debian-mirror-gitlab/db/migrate/20151103133339_add_shared_runners_setting.rb
2018-11-18 11:00:15 +05:30

6 lines
175 B
Ruby

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