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

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

class AddNetworkToUserCreditCardValidations < Gitlab::Database::Migration[1.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  def change
    add_column :user_credit_card_validations, :network, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end