creddit/db/migrate/20150708191201_create_users.rb

12 lines
217 B
Ruby
Raw Normal View History

2015-07-08 15:17:37 -04:00
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :username
t.string :email
t.string :password_digest
t.timestamps null: false
end
end
end