maple-v206/sql/8 - InitTable_npc.sql

14 lines
413 B
SQL

drop table if exists npc;
CREATE TABLE `npc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`npcid` int(11) DEFAULT NULL,
`mapid` int(11) DEFAULT NULL,
`x` int(11) DEFAULT NULL,
`y` int(11) DEFAULT NULL,
`cy` int(11) DEFAULT NULL,
`rx0` int(11) DEFAULT NULL,
`rx1` int(11) DEFAULT NULL,
`fh` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1