πŸ› οΈInstallation

Database

Before you install this database code, you can active the option `Config.AutoDatabaseSetup` to run this for you.

CREATE TABLE `m_multicharacter` (
	`charid` VARCHAR(60) NOT NULL,
	`slots` INT(11) NOT NULL,
	PRIMARY KEY (`charid`) USING BTREE,
	INDEX `slots` (`slots`) USING BTREE
) ENGINE=InnoDB;

Last updated