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/20200511181027_create_test_reports.rb')
-rw-r--r--db/migrate/20200511181027_create_test_reports.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20200511181027_create_test_reports.rb b/db/migrate/20200511181027_create_test_reports.rb
deleted file mode 100644
index a08e208441d..00000000000
--- a/db/migrate/20200511181027_create_test_reports.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class CreateTestReports < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def change
- create_table :requirements_management_test_reports do |t|
- t.datetime_with_timezone :created_at, null: false
- t.references :requirement, null: false, foreign_key: { on_delete: :cascade }
- t.bigint :pipeline_id
- t.bigint :author_id
- t.integer :state, null: false, limit: 2
-
- t.index :pipeline_id
- t.index :author_id
- end
- end
-end