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/006_delete_cost_from_cost_e...

9 lines
240 B

class DeleteCostFromCostEntries < ActiveRecord::Migration
def self.up
remove_column :cost_entries, :cost
end
def self.down
add_column :cost_entries, :cost, :decimal, :precission => 15, :scale => 2, :null => false
end
end