2017-09-05 06:58:11 -04:00
|
|
|
class ResolveOutdatedDiffDiscussions < ActiveRecord::Migration
|
2017-08-28 17:38:06 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2017-09-05 06:58:11 -04:00
|
|
|
def change
|
|
|
|
add_column(:projects, :resolve_outdated_diff_discussions, :boolean)
|
2017-08-28 17:38:06 -04:00
|
|
|
end
|
|
|
|
end
|