· 7 years ago · Dec 14, 2018, 11:46 PM
1CREATE TABLE IF NOT EXISTS `partylist_9` (
2 `Indx` int(10) unsigned NOT NULL auto_increment,
3 `PartyID` int(10) unsigned NOT NULL default '0',
4 `CharID` int(10) unsigned NOT NULL default '0',
5 `CharacterName` tinyblob,
6 `TimeCheck` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
7 PRIMARY KEY (`Indx`),
8 KEY `partyid` (`PartyID`)
9) ENGINE=MyISAM DEFAULT CHARSET=latin1;