summaryrefslogtreecommitdiff
path: root/db/migrate/20170918140927_create_group_custom_attributes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170918140927_create_group_custom_attributes.rb')
-rw-r--r--db/migrate/20170918140927_create_group_custom_attributes.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20170918140927_create_group_custom_attributes.rb b/db/migrate/20170918140927_create_group_custom_attributes.rb
deleted file mode 100644
index 215a0f16b6f..00000000000
--- a/db/migrate/20170918140927_create_group_custom_attributes.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-class CreateGroupCustomAttributes < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def change
- create_table :group_custom_attributes do |t|
- t.timestamps_with_timezone null: false
- t.references :group, null: false
- t.string :key, null: false
- t.string :value, null: false
-
- t.index [:group_id, :key], unique: true
- t.index [:key, :value]
- end
-
- add_foreign_key :group_custom_attributes, :namespaces, column: :group_id, on_delete: :cascade # rubocop: disable Migration/AddConcurrentForeignKey
- end
-end