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

20210610102410_add_protected_attribute_to_pending_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 026fa0d7043fd550a5532bc0ed84f0d1c675b0c5 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddProtectedAttributeToPendingBuilds < ActiveRecord::Migration[6.1]
  def change
    add_column :ci_pending_builds, :protected, :boolean, null: false, default: false
  end
end