Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151103133339_add_shared_runners_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4231dfd5c2e81a00f4ffd2f41acf00dd5fc59137 (plain)
1
2
3
4
5
class AddSharedRunnersSetting < ActiveRecord::Migration
  def up
    add_column :application_settings, :shared_runners_enabled, :boolean, default: true, null: false
  end
end