debian-mirror-gitlab/db/migrate/20200609142507_remove_not_null_constraint_from_milestone_events_table.rb
2020-06-23 00:09:42 +05:30

10 lines
225 B
Ruby

# frozen_string_literal: true
class RemoveNotNullConstraintFromMilestoneEventsTable < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
change_column_null :resource_milestone_events, :user_id, true
end
end