10 lines
193 B
Ruby
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
|