summaryrefslogtreecommitdiff
path: root/db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb')
-rw-r--r--db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb b/db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb
deleted file mode 100644
index 7f736bf2b87..00000000000
--- a/db/migrate/20210705132928_add_new_user_signups_cap_to_namespace_settings.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddNewUserSignupsCapToNamespaceSettings < ActiveRecord::Migration[6.1]
- include Gitlab::Database::MigrationHelpers
-
- def up
- with_lock_retries do
- add_column :namespace_settings, :new_user_signups_cap, :integer, null: true
- end
- end
-
- def down
- with_lock_retries do
- remove_column :namespace_settings, :new_user_signups_cap
- end
- end
-end