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

20200211174946_add_auto_renew_to_gitlab_subscriptions.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bce74bb8f8be5dfa2394249ed6bc3cd3b71b47f (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddAutoRenewToGitlabSubscriptions < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :gitlab_subscription_histories, :auto_renew, :boolean
    add_column :gitlab_subscriptions, :auto_renew, :boolean
  end
end