blob: 008983aa887444d2cd904e80267db5a03f0e0f0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
-- Create the new floor item table
CREATE TABLE IF NOT EXISTS `mana_floor_items` (
`id` int(10) unsigned NOT NULL auto_increment,
`map_id` int(10) unsigned NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`amount` smallint(5) unsigned NOT NULL,
`pos_x` smallint(5) unsigned NOT NULL,
`pos_y` smallint(5) unsigned NOT NULL,
--
PRIMARY KEY (`id`)
) ENGINE=InnoDB
DEFAULT CHARSET=utf8
AUTO_INCREMENT=1 ;
-- Update database version.
UPDATE mana_world_states
SET value = '17',
moddate = UNIX_TIMESTAMP()
WHERE state_name = 'database_version';
|