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' - ); } }