SQL

Run this SQL file in your database

CREATE TABLE IF NOT EXISTS `treasure` (
  `citizenid` varchar(255) DEFAULT NULL,
  `forename` varchar(255) DEFAULT NULL,
  `surname` varchar(255) DEFAULT NULL,
  `found` int DEFAULT NULL
);

Last updated