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

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

class AddStatusToDependencyProxyManifests < Gitlab::Database::Migration[1.0]
  def change
    add_column :dependency_proxy_manifests, :status, :smallint, default: 0, null: false
  end
end