summaryrefslogtreecommitdiff
path: root/db/migrate/20211123182614_make_iteration_cadences_start_date_nullable.rb
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