Files
redmine_contracts/db/migrate/017_add_paid_to_fixed_budgets.rb

11 lines
224 B
Ruby

class AddPaidToFixedBudgets < ActiveRecord::Migration
def self.up
add_column :fixed_budgets, :paid, :boolean
add_index :fixed_budgets, :paid
end
def self.down
remove_column :fixed_budgets, :paid
end
end