Page cover

📅SQL

To ensure the XP system works as intended you must import or run the SQL file provided in the [SQL] folder to your database. Failure to do so will result in errors when using the XP system

CREATE TABLE IF NOT EXISTS `recycling_rep` (
  `citizenid` VARCHAR(50) NOT NULL,
  `rep` INT(11) DEFAULT 0,
  PRIMARY KEY (`citizenid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

Last updated