summaryrefslogtreecommitdiff
path: root/db/migrate/20160727191041_create_boards.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160727191041_create_boards.rb')
-rw-r--r--db/migrate/20160727191041_create_boards.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20160727191041_create_boards.rb b/db/migrate/20160727191041_create_boards.rb
deleted file mode 100644
index 60ed5508b10..00000000000
--- a/db/migrate/20160727191041_create_boards.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# rubocop:disable Migration/Timestamps
-class CreateBoards < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def change
- create_table :boards do |t|
- t.references :project, index: true, foreign_key: true, null: false
-
- t.timestamps null: false
- end
- end
-end