Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200609142508_remove_not_null_constraint_from_state_events_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffa047a78f9e477ff3041ee1146eea164abf74ae (plain)
1
2
3
4
5
6
7
8
9
# 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