summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb')
-rw-r--r--db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb54
1 files changed, 0 insertions, 54 deletions
diff --git a/db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb b/db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb
deleted file mode 100644
index 69d99704469..00000000000
--- a/db/post_migrate/20210303121224_update_gitlab_subscriptions_start_at_post_eoa.rb
+++ /dev/null
@@ -1,54 +0,0 @@
-# frozen_string_literal: true
-
-class UpdateGitlabSubscriptionsStartAtPostEoa < ActiveRecord::Migration[6.0]
- UPDATE_BATCH_SIZE = 100
-
- disable_ddl_transaction!
-
- class Plan < ActiveRecord::Base
- self.table_name = 'plans'
- self.inheritance_column = :_type_disabled
- end
-
- class GitlabSubscription < ActiveRecord::Base
- include EachBatch
-
- self.table_name = 'gitlab_subscriptions'
- self.inheritance_column = :_type_disabled
-
- EOA_ROLLOUT_DATE = '2021-01-26'
-
- scope :with_plan, -> (from_plan) do
- where("start_date >= ? AND hosted_plan_id = ?", EOA_ROLLOUT_DATE, from_plan.id)
- end
- end
-
- def up
- return unless Gitlab.com?
-
- silver_plan = Plan.find_by(name: 'silver')
- gold_plan = Plan.find_by(name: 'gold')
- premium_plan = Plan.find_by(name: 'premium')
- ultimate_plan = Plan.find_by(name: 'ultimate')
-
- # Silver to Premium
- update_hosted_plan_for_subscription(from_plan: silver_plan, to_plan: premium_plan)
-
- # Gold to Ultimate
- update_hosted_plan_for_subscription(from_plan: gold_plan, to_plan: ultimate_plan)
- end
-
- def down
- # no-op
- end
-
- private
-
- def update_hosted_plan_for_subscription(from_plan:, to_plan:)
- return unless from_plan && to_plan
-
- GitlabSubscription.with_plan(from_plan).each_batch(of: UPDATE_BATCH_SIZE) do |batch|
- batch.update_all(hosted_plan_id: to_plan.id)
- end
- end
-end