summaryrefslogtreecommitdiff
path: root/db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb')
-rw-r--r--db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb b/db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb
new file mode 100644
index 00000000000..b8e7c7af144
--- /dev/null
+++ b/db/migrate/20210908185736_add_status_to_dependency_proxy_manifests.rb
@@ -0,0 +1,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