🛠️Installation
Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Inventory!
Inventory System Installation
CREATE TABLE IF NOT EXISTS `stashdata` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`typeofdata` varchar(15) NOT NULL,
`stashname` varchar(50) NOT NULL,
`stashmaxweight` varchar(50) NOT NULL,
`uniqeid` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `stashdataitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniqeid` varchar(50) NOT NULL,
`typeofdata` varchar(50) NOT NULL,
`itemname` varchar(50) NOT NULL,
`itemlabel` varchar(50) NOT NULL,
`itemcount` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;Last updated