summaryrefslogtreecommitdiff
path: root/db/migrate/20170918111708_create_project_custom_attributes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170918111708_create_project_custom_attributes.rb')
-rw-r--r--db/migrate/20170918111708_create_project_custom_attributes.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20170918111708_create_project_custom_attributes.rb b/db/migrate/20170918111708_create_project_custom_attributes.rb
deleted file mode 100644
index bd6064689ff..00000000000
--- a/db/migrate/20170918111708_create_project_custom_attributes.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class CreateProjectCustomAttributes < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :project_custom_attributes do |t|
- t.timestamps_with_timezone null: false
- t.references :project, null: false, foreign_key: { on_delete: :cascade }
- t.string :key, null: false
- t.string :value, null: false
-
- t.index [:project_id, :key], unique: true
- t.index [:key, :value]
- end
- end
-end