gitlab-org--gitlab-foss/db/migrate/20210308175227_add_lock_del...

10 lines
268 B
Ruby

# frozen_string_literal: true
class AddLockDelayedProjectRemovalToApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :application_settings, :lock_delayed_project_removal, :boolean, default: false, null: false
end
end