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/20191016133352_create_ci_subscriptions_projects.rb')
-rw-r--r--db/migrate/20191016133352_create_ci_subscriptions_projects.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20191016133352_create_ci_subscriptions_projects.rb b/db/migrate/20191016133352_create_ci_subscriptions_projects.rb
deleted file mode 100644
index 00ab2c19193..00000000000
--- a/db/migrate/20191016133352_create_ci_subscriptions_projects.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class CreateCiSubscriptionsProjects < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def change
- create_table :ci_subscriptions_projects do |t|
- t.references :downstream_project, null: false, index: false, foreign_key: { to_table: :projects, on_delete: :cascade }
- t.references :upstream_project, null: false, foreign_key: { to_table: :projects, on_delete: :cascade }
- end
-
- add_index :ci_subscriptions_projects, [:downstream_project_id, :upstream_project_id],
- unique: true, name: 'index_ci_subscriptions_projects_unique_subscription'
- end
-end