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

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

class AddTextLimitToEpicsColor < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  def up
    add_text_limit :epics, :color, 7
  end

  def down
    remove_text_limit :epics, :color
  end
end