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

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

class AddLineCodeToDraftNotes < Gitlab::Database::Migration[1.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in db/migrate/20211124095704_add_draft_notes_line_code_text_limit.rb
  def change
    add_column :draft_notes, :line_code, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end