mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 06:15:59 +01:00
11 lines
257 B
Ruby
11 lines
257 B
Ruby
|
|
class AddJournalUpdatedOn < ActiveRecord::Migration[5.2]
|
||
|
|
def up
|
||
|
|
add_column :journals, :updated_on, :datetime, :after => :created_on
|
||
|
|
Journal.update_all('updated_on = created_on')
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :journals, :updated_on
|
||
|
|
end
|
||
|
|
end
|