summaryrefslogtreecommitdiff
path: root/db/migrate/20170816133940_add_protected_to_ci_builds.rb
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