summaryrefslogtreecommitdiff
path: root/db/migrate/20180508135515_set_runner_type_not_null.rb
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