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

20160504112519_add_run_untagged_to_ci_runner.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84e5e4eabe27657474fa30cd834139be89e519e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class AddRunUntaggedToCiRunner < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

  def up
    add_column_with_default(:ci_runners, :run_untagged, :boolean,
                            default: true, allow_null: false)
  end

  def down
    remove_column(:ci_runners, :run_untagged)
  end
end