mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-06 20:32:27 +00:00
Added current table to utils sql, though not formatted correctly yet since it's heavily wip
This commit is contained in:
parent
9fcdf5367e
commit
316aa5ef73
21
utils/sql/git/required/inv2_wip.sql
Normal file
21
utils/sql/git/required/inv2_wip.sql
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
DROP TABLE IF EXISTS `character_inventory`;
|
||||||
|
CREATE TABLE `character_inventory` (
|
||||||
|
`id` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`type` SMALLINT(6) NOT NULL,
|
||||||
|
`slot` SMALLINT(6) NOT NULL,
|
||||||
|
`bag_index` SMALLINT(6) NOT NULL,
|
||||||
|
`aug_index` SMALLINT(6) NOT NULL,
|
||||||
|
`item_id` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`charges` SMALLINT(6) NOT NULL,
|
||||||
|
`color` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`attuned` TINYINT(3) UNSIGNED NOT NULL,
|
||||||
|
`custom_data` TEXT NOT NULL,
|
||||||
|
`ornament_icon` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`ornament_idfile` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`ornament_hero_model` INT(10) UNSIGNED NOT NULL,
|
||||||
|
`tracking_id` BIGINT(20) UNSIGNED NOT NULL,
|
||||||
|
PRIMARY KEY (`id`, `type`, `slot`, `bag_index`, `aug_index`),
|
||||||
|
INDEX `tracking_id` (`tracking_id`)
|
||||||
|
)
|
||||||
|
COLLATE='latin1_swedish_ci'
|
||||||
|
ENGINE=InnoDB;
|
||||||
Loading…
x
Reference in New Issue
Block a user