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

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

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