Installation

Install is simple. Only drag and drop

When you drag script to your server, then upload SQL file, or use Config.AutoSetupSQL

CREATE TABLE IF NOT EXISTS `ug_carcreator` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` longtext NOT NULL,
  `model` varchar(50) DEFAULT NULL,
  `coords` text DEFAULT NULL,
  `is_persistent` tinyint(1) DEFAULT NULL,
  `is_locked` tinyint(1) DEFAULT NULL,
  `plate` varchar(15) DEFAULT NULL,
  `color` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`color`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;


Last updated