debian-mirror-gitlab/db/migrate/20151103133339_add_shared_runners_setting.rb
2018-12-23 12:14:25 +05:30

5 lines
180 B
Ruby

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