added user model

This commit is contained in:
Edin Dazdarevic
2015-02-20 06:55:18 +01:00
parent 7c27d9415a
commit 8f904099cf
6 changed files with 55 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
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