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

20160509091049_add_locked_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: 3fbaef3b7f0ae87d39d78a1e02516da7c77a97ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class AddLockedToCiRunner < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

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

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