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

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

class AddStartDateToIssuesTable < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :issues, :start_date, :date
  end
end