debian-mirror-gitlab/db/migrate/20151103133339_add_shared_runners_setting.rb

7 lines
197 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-11-26 14:37:03 +05:30
class AddSharedRunnersSetting < ActiveRecord::Migration
def up
add_column :application_settings, :shared_runners_enabled, :boolean, default: true, null: false
end
end