rosa-build/db/migrate/20111017112255_create_priva...

16 lines
297 B
Ruby

# -*- encoding : utf-8 -*-
class CreatePrivateUsers < ActiveRecord::Migration
def self.up
create_table :private_users do |t|
t.integer :platform_id
t.string :login
t.string :password
t.timestamps
end
end
def self.down
drop_table :private_users
end
end