summaryrefslogtreecommitdiff
path: root/db/migrate/20200609142507_remove_not_null_constraint_from_milestone_events_table.rb
blob: 41204afb01405689a871841a510a63c352f36390 (plain)
1
2
3
4
5
6
7
8
9
# 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