socialforge/db/migrate/20170322095511_create_verif...

14 lines
267 B
Ruby

class CreateVerificationCodes < ActiveRecord::Migration
def change
create_table :verification_codes do |t|
t.string :code
t.integer :code_type
t.integer :status
t.string :phone
t.string :email
t.timestamps
end
end
end