14 lines
		
	
	
		
			527 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			527 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| DROP TABLE IF EXISTS `announcements`;
 | |
| CREATE TABLE IF NOT EXISTS `announcements` (
 | |
|   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
 | |
|   `type` int(11) NOT NULL,
 | |
|   `initial` bigint(20) NOT NULL DEFAULT 0,
 | |
|   `delay` bigint(20) NOT NULL DEFAULT 0,
 | |
|   `repeat` int(11) NOT NULL DEFAULT 0,
 | |
|   `author` text NOT NULL,
 | |
|   `content` text NOT NULL,
 | |
|   PRIMARY KEY (`id`)
 | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 | |
| 
 | |
| INSERT INTO announcements (`type`, `author`, `content`) VALUES 
 | |
| (0, 'Mobius', 'Server powered by L2J-Mobius project.'); | 
