Skip to content

Commit db69834

Browse files
committed
DB: Fix base auth_database.sql
1 parent db85525 commit db69834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/base/auth_database.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ DROP TABLE IF EXISTS `battlenet_account_transmog_outfits`;
469469
CREATE TABLE `battlenet_account_transmog_outfits` (
470470
`battlenetAccountId` int unsigned NOT NULL,
471471
`transmogOutfitId` int NOT NULL DEFAULT '0',
472-
PRIMARY KEY (`battlenetAccountId`,`blobIndex`),
472+
PRIMARY KEY (`battlenetAccountId`,`transmogOutfitId`),
473473
CONSTRAINT `fk_battlenet_account_transmog_outfits` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
474474
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
475475
/*!40101 SET character_set_client = @saved_cs_client */;

0 commit comments

Comments
 (0)