20c96a191d
git-svn-id: file:///home/svn/framework3/trunk@8593 4d416f70-5f16-0410-b530-b9f4589650da
17 lines
294 B
Ruby
17 lines
294 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :users do |t|
|
|
t.string :username
|
|
t.string :crypted_password
|
|
t.string :password_salt
|
|
t.string :persistence_token
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :users
|
|
end
|
|
end
|