rosa-build/db/migrate/20140306102620_destroy_priv...

16 lines
295 B
Ruby
Raw Normal View History

2014-03-06 11:24:33 +00:00
class DestroyPrivateUser < ActiveRecord::Migration
def self.up
drop_table :private_users
end
def self.down
create_table :private_users do |t|
t.integer :platform_id
t.string :login
t.string :password
t.integer :user_id
t.timestamps
end
end
end