DB/Structure

added proper keys to ?_comments
This commit is contained in:
Sarjuuk
2015-07-14 21:51:20 +02:00
parent cea81d1810
commit 20732e38d8
2 changed files with 6 additions and 1 deletions

View File

@@ -346,7 +346,8 @@ CREATE TABLE `aowow_comments` (
`responseUserId` int(10) unsigned NOT NULL DEFAULT '0',
`responseBody` text,
`responseRoles` smallint(5) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY `id` (`id`)
PRIMARY KEY (`id`),
INDEX `type_typeId` (`type`, `typeId`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;