11 lines
		
	
	
		
			389 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			389 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| DROP TABLE IF EXISTS `cursed_weapons`;
 | |
| CREATE TABLE IF NOT EXISTS `cursed_weapons` (
 | |
|   `itemId` INT,
 | |
|   `charId` INT UNSIGNED NOT NULL DEFAULT 0,
 | |
|   `playerKarma` INT DEFAULT 0,
 | |
|   `playerPkKills` INT DEFAULT 0,
 | |
|   `nbKills` INT DEFAULT 0,
 | |
|   `endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
 | |
|   PRIMARY KEY (`itemId`),
 | |
|   KEY `charId` (`charId`)
 | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | 
