summaryrefslogtreecommitdiff
path: root/db/migrate/20140729134820_create_labels.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20140729134820_create_labels.rb')
-rw-r--r--db/migrate/20140729134820_create_labels.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20140729134820_create_labels.rb b/db/migrate/20140729134820_create_labels.rb
deleted file mode 100644
index 1060610b660..00000000000
--- a/db/migrate/20140729134820_create_labels.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# rubocop:disable all
-class CreateLabels < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :labels do |t|
- t.string :title
- t.string :color
- t.integer :project_id
-
- t.timestamps null: true
- end
- end
-end