Файл: anibiliwar.ru/boss.sql
Строк: 14
DROP TABLE IF EXISTS `boss`;
CREATE TABLE `boss` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(30) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL,
`lvl` int(11) NOT NULL,
`sila` int(11) NOT
NULL,
`health` int(11) NOT NULL,
`lovk` int(11) NOT NULL,
`zashit`
int(11) NOT NULL,
`gold` int(11) NOT NULL,
`exp` int(11) NOT NULL,
`image` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT
CHARSET=latin1;
INSERT INTO boss
VALUES("1","Берсерк","15","5000","2000","3000","1000","20","50","/img/1.png");