debian-mirror-gitlab/db/migrate/20180508135515_set_runner_type_not_null.rb

10 lines
204 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class SetRunnerTypeNotNull < ActiveRecord::Migration[4.2]
2018-11-08 19:23:39 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
change_column_null(:ci_runners, :runner_type, false)
end
end