Files
redmine-budget-plugin/db/migrate/002_add_project_id_to_deliverables.rb

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