debian-mirror-gitlab/db/migrate/20151103133339_add_shared_runners_setting.rb
2016-06-16 23:09:34 +05:30

7 lines
197 B
Ruby

# rubocop:disable all
class AddSharedRunnersSetting < ActiveRecord::Migration
def up
add_column :application_settings, :shared_runners_enabled, :boolean, default: true, null: false
end
end