You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/db/migrate/20141004124152_create_auth_...

14 lines
311 B
Ruby

class CreateAuthCodes < ActiveRecord::Migration
def change
create_table :auth_codes do |t|
t.references :user, index: true, null: false
t.string :code, null: false
t.datetime :expires_at, null: false
t.timestamps
end
add_index :auth_codes, [:code, :expires_at]
end
end