gitlab-org--gitlab-foss/db/migrate/20210308175226_add_delayed_...

10 lines
259 B
Ruby

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