2017-09-10 17:25:29 +05:30
|
|
|
# rubocop:disable Migration/Datetime
|
2018-12-23 12:14:25 +05:30
|
|
|
class AddClosedAtToIssues < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column :issues, :closed_at, :datetime
|
|
|
|
end
|
|
|
|
end
|