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

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

class AddIterationCadenceIdToIssueBoards < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :boards, :iteration_cadence_id, :bigint
  end
end