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

20170816133940_add_protected_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c73a4387d29882b80d303e25d8e16a602c9b4ed1 (plain)
1
2
3
4
5
6
7
class AddProtectedToCiBuilds < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :ci_builds, :protected, :boolean
  end
end