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