socialforge/db/migrate/20150305011359_add_organiza...

10 lines
193 B
Ruby

class AddOrganizationToProject < ActiveRecord::Migration
def up
add_column :projects, :organization_id, :integer
end
def down
remove_column :projects, :organization_id
end
end