gitlab-org--gitlab-foss/db/migrate/20180508135515_set_runner_t...

10 lines
204 B
Ruby

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