mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 17:56:03 +01:00
10 lines
229 B
Ruby
10 lines
229 B
Ruby
|
|
class AddJournalUpdatedBy < ActiveRecord::Migration[5.2]
|
||
|
|
def up
|
||
|
|
add_column :journals, :updated_by_id, :integer, :default => nil, :after => :updated_on
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :journals, :updated_by_id
|
||
|
|
end
|
||
|
|
end
|