Installation
π Installation Guide
1. Download & Place the Resource
ensure z-impoundsystem
4. Dependencies
5. Database Setup
Last updated
ensure z-impoundsystemLast updated
CREATE TABLE IF NOT EXISTS `impounded_vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plate` varchar(20) NOT NULL,
`impounded_by` varchar(50) DEFAULT NULL,
`impound_until` datetime DEFAULT NULL,
`bill_amount` int(11) NOT NULL DEFAULT 0,
`location` longtext DEFAULT NULL,
`method` varchar(50) NOT NULL DEFAULT 'wheel_clamp',
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`reason` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;