Page cover

πŸ“…SQL

  • To ensure the reputation system works as intended you must import or the run the SQL file provided in the folder [SQL] to your database failure to do so will result in errors when using the chop shop

CREATE TABLE IF NOT EXISTS `player_chop_rep` (
  `citizenid` varchar(50) NOT NULL,
  `shop_key` varchar(50) NOT NULL,
  `rep` int(11) DEFAULT 0,
  PRIMARY KEY (`citizenid`, `shop_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

Last updated