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

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

class MakeIterationCadencesStartDateNullable < Gitlab::Database::Migration[1.0]
  def change
    change_column_null :iterations_cadences, :start_date, true
  end
end