🛠️Installation
Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Chirstmas!
Clothingshop System Installation
CREATE TABLE IF NOT EXISTS `SChristmasVIP` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) DEFAULT NULL,
PRIMARY KEY (`index`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `SChristmasVIPRedeem` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`tbxid` varchar(100) DEFAULT NULL,
PRIMARY KEY (`index`),
KEY `tbxid` (`tbxid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `SChristmasGifts` (
`index` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) DEFAULT NULL,
`typeofcalender` varchar(6) DEFAULT NULL,
`opendays` text DEFAULT NULL,
`vipdoor` varchar(50) DEFAULT NULL,
PRIMARY KEY (`index`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;Last updated