From 1b5cc69b110dc55dfdfc25fb3e5f0e21ea92bbe8 Mon Sep 17 00:00:00 2001 From: Jake Noble Date: Mon, 3 Feb 2020 20:35:57 +0000 Subject: [PATCH] remove description index --- composer.json | 2 +- src/migrations/Install.php | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/composer.json b/composer.json index ac84eb9..42d013b 100755 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "burnthebook/craft3-livebuzz", "description": "Pulls Exhibitors from the the LiveBuzz API to a website, it also updates and removes Exhibitors.", "type": "craft-plugin", - "version": "1.0.1", + "version": "1.0.2", "keywords": [ "craft", "cms", diff --git a/src/migrations/Install.php b/src/migrations/Install.php index e66ee1d..c205698 100755 --- a/src/migrations/Install.php +++ b/src/migrations/Install.php @@ -69,11 +69,5 @@ private function createEventsTable() $this->db->getIndexName(Exhibitor::TABLE, 'companyName'), Exhibitor::TABLE, 'companyName'); - - $this->createIndex( - $this->db->getIndexName(Exhibitor::TABLE, 'description'), - Exhibitor::TABLE, - 'description' - ); } }