6 lines
197 B
Ruby
6 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
|