OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/db/migrate/009_add_comment_field_to_bu...

11 lines
404 B

class AddCommentFieldToBudget < ActiveRecord::Migration
def self.up
add_column :deliverable_costs, :comments, :string, :limit => 255, :null => false, :default => ""
add_column :deliverable_hours, :comments, :string, :limit => 255, :null => false, :default => ""
end
def self.down
remove_column :deliverable_costs, :comments
remove_column :deliverable_hours, :comments
end
end