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

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

class AddShortTitleToAppearances < Gitlab::Database::Migration[2.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20221115085813_add_limit_to_appereances_short_title.rb
  def change
    add_column :appearances, :short_title, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end