You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
the_sins_we_commit/db/migrate/20151029150245_create_users.rb

13 lines
248 B

class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :email, null: false
t.string :password_digest, null: false
t.timestamps null: false
end
add_index :users, :email
end
end