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/20201008125643_create_csv_issue_imports.rb')
-rw-r--r--db/migrate/20201008125643_create_csv_issue_imports.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20201008125643_create_csv_issue_imports.rb b/db/migrate/20201008125643_create_csv_issue_imports.rb
deleted file mode 100644
index be3206af6d8..00000000000
--- a/db/migrate/20201008125643_create_csv_issue_imports.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class CreateCsvIssueImports < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- create_table :csv_issue_imports do |t|
- t.bigint :project_id, null: false, index: true
- t.bigint :user_id, null: false, index: true
-
- t.timestamps_with_timezone
- end
- end
-
- def down
- drop_table :csv_issue_imports
- end
-end