Database Installation

Import the following into your database.

CREATE TABLE IF NOT EXISTS `bored_nos` (
  `plate` varchar(255) DEFAULT NULL,
  `system` int(11) DEFAULT NULL,
  `level` int(11) DEFAULT NULL,
  `owner` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

Last updated