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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20211119195201_create_deployment_approvals.rb')
-rw-r--r--db/migrate/20211119195201_create_deployment_approvals.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20211119195201_create_deployment_approvals.rb b/db/migrate/20211119195201_create_deployment_approvals.rb
deleted file mode 100644
index a238da302f9..00000000000
--- a/db/migrate/20211119195201_create_deployment_approvals.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class CreateDeploymentApprovals < Gitlab::Database::Migration[1.0]
- def change
- create_table :deployment_approvals do |t|
- t.bigint :deployment_id, null: false
- t.bigint :user_id, null: false, index: true
- t.timestamps_with_timezone null: false
- t.integer :status, limit: 2, null: false
- t.index [:deployment_id, :user_id], unique: true
- end
- end
-end