summaryrefslogtreecommitdiff
path: root/db/migrate/20160727193336_create_lists.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160727193336_create_lists.rb')
-rw-r--r--db/migrate/20160727193336_create_lists.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20160727193336_create_lists.rb b/db/migrate/20160727193336_create_lists.rb
deleted file mode 100644
index 4591c9a120f..00000000000
--- a/db/migrate/20160727193336_create_lists.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# rubocop:disable Migration/Timestamps
-class CreateLists < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def change
- create_table :lists do |t|
- t.references :board, index: true, foreign_key: true, null: false
- t.references :label, index: true, foreign_key: true
- t.integer :list_type, null: false, default: 1
- t.integer :position
-
- t.timestamps null: false
- end
- end
-end