debian-mirror-gitlab/db/migrate/20211123182614_make_iteration_cadences_start_date_nullable.rb
2022-01-26 12:08:38 +05:30

7 lines
197 B
Ruby

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