summaryrefslogtreecommitdiff
path: root/db/migrate/20230111171355_add_allow_possible_spam_to_application_settings.rb
blob: 0b6b20e6129b9ca10ad0dc4deabf86a638679762 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddAllowPossibleSpamToApplicationSettings < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :application_settings, :allow_possible_spam, :boolean, default: false, null: false
  end
end