Files
old-ribica/front-api/db/migrate/20150218053655_create_users.rb

11 lines
213 B
Ruby
Raw Normal View History

2015-02-20 06:55:18 +01:00
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :first_name
t.string :last_name
t.string :email
t.string :password_digest
end
end
end