Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210205104425_add_new_post_eoa_plans.rb')
-rw-r--r--db/post_migrate/20210205104425_add_new_post_eoa_plans.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/post_migrate/20210205104425_add_new_post_eoa_plans.rb b/db/post_migrate/20210205104425_add_new_post_eoa_plans.rb
deleted file mode 100644
index d1a5afbd314..00000000000
--- a/db/post_migrate/20210205104425_add_new_post_eoa_plans.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-class AddNewPostEoaPlans < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- execute "INSERT INTO plans (name, title, created_at, updated_at) VALUES ('premium', 'Premium (Formerly Silver)', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"
- execute "INSERT INTO plans (name, title, created_at, updated_at) VALUES ('ultimate', 'Ultimate (Formerly Gold)', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"
- end
-
- def down
- execute "DELETE FROM plans WHERE name IN ('premium', 'ultimate')"
- end
-end