summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb')
-rw-r--r--db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb b/db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb
deleted file mode 100644
index a303b9d1869..00000000000
--- a/db/post_migrate/20200408132152_remove_namespaces_trial_ends_on.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNamespacesTrialEndsOn < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- remove_concurrent_index_by_name :namespaces, 'index_namespaces_on_trial_ends_on'
-
- with_lock_retries do
- remove_column :namespaces, :trial_ends_on
- end
- end
-
- def down
- unless column_exists?(:namespaces, :trial_ends_on)
- with_lock_retries do
- add_column :namespaces, :trial_ends_on, :datetime_with_timezone # rubocop:disable Migration/AddColumnsToWideTables
- end
- end
-
- add_concurrent_index :namespaces, :trial_ends_on, using: 'btree', where: 'trial_ends_on IS NOT NULL'
- end
-end