2019-01-03 12:48:30 +05:30
|
|
|
class ResolveOutdatedDiffDiscussions < ActiveRecord::Migration
|
2018-03-17 18:26:18 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column(:projects, :resolve_outdated_diff_discussions, :boolean)
|
|
|
|
end
|
|
|
|
end
|