gitlab-org--gitlab-foss/db/migrate/20210610102410_add_protecte...

8 lines
213 B
Ruby

# 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