rosa-build/db/migrate/20110311154044_remove_platf...

10 lines
212 B
Ruby

class RemovePlatformIdFromProjects < ActiveRecord::Migration
def self.up
remove_column :projects, :platform_id
end
def self.down
add_column :projects, :platform_id, :integer, null: false
end
end