You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20150305011359_add_organiza...

10 lines
193 B

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