debian-mirror-gitlab/db/migrate/20180508135515_set_runner_type_not_null.rb
2019-01-03 12:48:30 +05:30

10 lines
199 B
Ruby

class SetRunnerTypeNotNull < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
change_column_null(:ci_runners, :runner_type, false)
end
end