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

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

class AddTypeNewToIntegrations < ActiveRecord::Migration[6.1]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20210721134707_add_text_limit_to_integrations_type_new
  def change
    add_column :integrations, :type_new, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end