15 lines
254 B
Ruby
15 lines
254 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :users do |t|
|
|
t.string :email
|
|
t.string :password_hash
|
|
t.string :password_salt
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :users
|
|
end
|
|
end
|