Added authlogic and user schema

This commit is contained in:
Christoph Haas 2015-06-15 13:04:29 +02:00
parent a9b7e50209
commit 3b056a2db8
6 changed files with 46 additions and 1 deletions

View file

@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.text :email
t.text :realname
t.text :password
t.timestamps null: false
end
end
end