debian-mirror-gitlab/db/migrate/20230111171355_add_allow_possible_spam_to_application_settings.rb
2023-04-23 21:23:45 +05:30

10 lines
259 B
Ruby

# 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