View Single Post
  #2  
Old 12-28-2015, 09:43 AM
dpjaf4t
Fire Beetle
 
Join Date: May 2010
Posts: 21
Default

This will create your zone_flags table:

Code:
CREATE TABLE `zone_flags` (
	`charID` INT(11) NOT NULL DEFAULT '0',
	`zoneID` INT(11) NOT NULL DEFAULT '0',
	PRIMARY KEY (`charID`, `zoneID`)
)
COLLATE='latin1_swedish_ci'
ENGINE=MyISAM
;
No required data in the table. Although if this table is missing, I would not be surprised if your database had other issues.
Reply With Quote