mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Added lost sql update
This commit is contained in:
parent
058e77a740
commit
5afdde9f9e
1 changed files with 28 additions and 0 deletions
28
sql/310/2_characters_character_equipmentsets.sql
Normal file
28
sql/310/2_characters_character_equipmentsets.sql
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
CREATE TABLE `character_equipmentsets` (
|
||||||
|
`guid` int(11) NOT NULL default '0',
|
||||||
|
`setguid` bigint(20) NOT NULL auto_increment,
|
||||||
|
`setindex` tinyint(4) NOT NULL default '0',
|
||||||
|
`name` varchar(30) NOT NULL,
|
||||||
|
`iconname` varchar(30) NOT NULL,
|
||||||
|
`item0` int(11) NOT NULL default '0',
|
||||||
|
`item1` int(11) NOT NULL default '0',
|
||||||
|
`item2` int(11) NOT NULL default '0',
|
||||||
|
`item3` int(11) NOT NULL default '0',
|
||||||
|
`item4` int(11) NOT NULL default '0',
|
||||||
|
`item5` int(11) NOT NULL default '0',
|
||||||
|
`item6` int(11) NOT NULL default '0',
|
||||||
|
`item7` int(11) NOT NULL default '0',
|
||||||
|
`item8` int(11) NOT NULL default '0',
|
||||||
|
`item9` int(11) NOT NULL default '0',
|
||||||
|
`item10` int(11) NOT NULL default '0',
|
||||||
|
`item11` int(11) NOT NULL default '0',
|
||||||
|
`item12` int(11) NOT NULL default '0',
|
||||||
|
`item13` int(11) NOT NULL default '0',
|
||||||
|
`item14` int(11) NOT NULL default '0',
|
||||||
|
`item15` int(11) NOT NULL default '0',
|
||||||
|
`item16` int(11) NOT NULL default '0',
|
||||||
|
`item17` int(11) NOT NULL default '0',
|
||||||
|
`item18` int(11) NOT NULL default '0',
|
||||||
|
PRIMARY KEY (`setguid`),
|
||||||
|
UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue