mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
First step of implementing inventory v2.0
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS `inventory_version`;
|
||||
|
||||
CREATE TABLE `inventory_version` (
|
||||
`version` INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`step` INT(11) UNSIGNED NOT NULL DEFAULT '0'
|
||||
)
|
||||
COLLATE='latin1_swedish_ci'
|
||||
ENGINE=MyISAM
|
||||
;
|
||||
|
||||
INSERT INTO `inventory_version` VALUES (2, 0);
|
||||
Reference in New Issue
Block a user