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

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

class AddTitleToTopic < Gitlab::Database::Migration[1.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20220331130726_add_text_limit_to_topics_title.rb
  def change
    add_column :topics, :title, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end