debian-mirror-gitlab/db/migrate/20210214201118_add_delayed_project_removal_to_namespace_settings.rb
2021-04-17 20:07:23 +05:30

10 lines
255 B
Ruby

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