summaryrefslogtreecommitdiff
path: root/db/migrate/20151103133339_add_shared_runners_setting.rb
blob: b5b34d4ca613348b2e4edda43313dc275ced072e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddSharedRunnersSetting < ActiveRecord::Migration
  def up
    add_column :application_settings, :shared_runners_enabled, :boolean, default: true, null: false
  end
end