Installation
Kibra Vehicleshops Installation Document and Basic Concepts
Depencedies
Resource
Download
Place your scripts
start kibra-core
start kibra-vehicleshopsDatabase Setup
CREATE TABLE `kibra-vehicleshops` (
`id` int(11) NOT NULL,
`info` text NOT NULL DEFAULT '[]',
`employees` text NOT NULL DEFAULT '[]',
`vehicles` text NOT NULL DEFAULT '[]',
`history` text NOT NULL DEFAULT '[]',
`requests` text NOT NULL DEFAULT '[]',
`categories` text NOT NULL DEFAULT '[]',
`recentsales` text NOT NULL DEFAULT '[]',
`recentorders` text NOT NULL DEFAULT '[]'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `kibra-vehicleshops`
ADD PRIMARY KEY (`id`);
ALTER TABLE `kibra-vehicleshops`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
COMMIT;
ALTER TABLE owned_vehicles
ADD COLUMN model VARCHAR(255);Installation Completed
Last updated