14 lines
267 B
Ruby
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
|