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

20180508135515_set_runner_type_not_null.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd043ec7179d349dd36e589f201b0b21a6ace61f (plain)
1
2
3
4
5
6
7
8
9
class SetRunnerTypeNotNull < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    change_column_null(:ci_runners, :runner_type, false)
  end
end