First step of implementing inventory v2.0

This commit is contained in:
Uleat
2017-03-09 02:46:09 -05:00
parent 999650d368
commit 37d22e17a3
4 changed files with 14 additions and 1 deletions
@@ -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);