10 lines
205 B
Ruby
10 lines
205 B
Ruby
class AddProjectIdToDeliverables < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :deliverables, :project_id, :integer
|
|
end
|
|
|
|
def self.down
|
|
remove_column :deliverables, :project_id
|
|
end
|
|
end
|