Skip to content
Snippets Groups Projects
Commit 688248cb authored by MELERIX's avatar MELERIX
Browse files

BETA: Two more Indexes for [8337].

parent 7402e068
No related branches found
No related tags found
No related merge requests found
CREATE TABLE IF NOT EXISTS `mods_wedding` (
`id` int(11) NOT NULL auto_increment,
`player1Id` int(11) NOT NULL default '0',
`player2Id` int(11) NOT NULL default '0',
`married` varchar(5) default NULL,
`affianceDate` decimal(20,0) default '0',
`weddingDate` decimal(20,0) default '0',
PRIMARY KEY (`id`)
CREATE TABLE `mods_wedding` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`player1Id` int(11) NOT NULL DEFAULT '0',
`player2Id` int(11) NOT NULL DEFAULT '0',
`married` varchar(5) DEFAULT NULL,
`affianceDate` decimal(20,0) DEFAULT '0',
`weddingDate` decimal(20,0) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `player1Id` (`player1Id`),
KEY `player2Id` (`player2Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
......@@ -16,4 +16,7 @@ ALTER TABLE `items` DROP KEY `key_time_of_use`;
ALTER TABLE `items` ADD KEY `owner_id` (`owner_id`);
ALTER TABLE `items` ADD KEY `item_id` (`item_id`);
ALTER TABLE `items` ADD KEY `loc` (`loc`);
ALTER TABLE `items` ADD KEY `time_of_use` (`time_of_use`);
\ No newline at end of file
ALTER TABLE `items` ADD KEY `time_of_use` (`time_of_use`);
ALTER TABLE `mods_wedding` ADD KEY `player1Id` (`player1Id`);
ALTER TABLE `mods_wedding` ADD KEY `player2Id` (`player2Id`);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment