DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
14 lines
297 B
Ruby
14 lines
297 B
Ruby
class AddPublicationDateToMilestones < ActiveRecord::Migration[4.2]
|
|
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
|