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

10 lines
217 B
Ruby

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