gitlab-org--gitlab-foss/db/migrate/20211123182614_make_iterati...

8 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