summaryrefslogtreecommitdiff
path: root/db/migrate/20191125140458_create_import_failures.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20191125140458_create_import_failures.rb')
-rw-r--r--db/migrate/20191125140458_create_import_failures.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20191125140458_create_import_failures.rb b/db/migrate/20191125140458_create_import_failures.rb
deleted file mode 100644
index e5dbcf5d41d..00000000000
--- a/db/migrate/20191125140458_create_import_failures.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class CreateImportFailures < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- create_table :import_failures do |t|
- t.integer :relation_index
- t.references :project, null: false, index: true
- t.datetime_with_timezone :created_at, null: false
- t.string :relation_key, limit: 64
- t.string :exception_class, limit: 128
- t.string :correlation_id_value, limit: 128, index: true
- t.string :exception_message, limit: 255
- end
- end
- # rubocop:enable Migration/PreventStrings
-end