14 lines
292 B
Ruby
14 lines
292 B
Ruby
class AddPublicationDateToMilestones < ActiveRecord::Migration
|
|
def up
|
|
change_table :budget_investment_milestones do |t|
|
|
t.datetime :publication_date
|
|
end
|
|
end
|
|
|
|
def down
|
|
change_table :budget_investment_milestones do |t|
|
|
t.remove :publication_date
|
|
end
|
|
end
|
|
end
|