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: 00c546c8f47b81c0a3adf8e8b501e0a8edd2fc8e (plain)
1
2
3
4
5
6
7
8
9
class SetRunnerTypeNotNull < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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