summaryrefslogtreecommitdiff
path: root/db/migrate/20200401211005_create_operations_user_lists.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200401211005_create_operations_user_lists.rb')
-rw-r--r--db/migrate/20200401211005_create_operations_user_lists.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20200401211005_create_operations_user_lists.rb b/db/migrate/20200401211005_create_operations_user_lists.rb
deleted file mode 100644
index b0b02ca8886..00000000000
--- a/db/migrate/20200401211005_create_operations_user_lists.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class CreateOperationsUserLists < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def change
- create_table :operations_user_lists do |t|
- t.references :project, index: false, foreign_key: { on_delete: :cascade }, null: false
- t.timestamps_with_timezone
- t.integer :iid, null: false
- t.string :name, null: false, limit: 255 # rubocop:disable Migration/PreventStrings
- t.text :user_xids, null: false, default: '' # rubocop:disable Migration/AddLimitToTextColumns
-
- t.index [:project_id, :iid], unique: true
- t.index [:project_id, :name], unique: true
- end
- end
-end