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