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: 13e1be0d89cd3c7cf3a3e7e41b0ca00b11957ea1 (plain)
1
2
3
4
5
6
7
class AddProtectedToCiBuilds < ActiveRecord::Migration[4.2]
  DOWNTIME = false

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