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

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

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

  def change
    add_column :gitlab_subscription_histories, :trial_extension_type, :smallint
  end
end