-- Insert vehicle brand categories
-- This script is idempotent and can be run multiple times safely
-- Uses INSERT IGNORE to skip duplicates

INSERT IGNORE INTO `categories` (`name`, `description`, `isActive`) VALUES
('toyota', 'Toyota vehicle parts and components', 1),
('lexus', 'Lexus vehicle parts and components', 1),
('honda', 'Honda vehicle parts and components', 1),
('nissan', 'Nissan vehicle parts and components', 1),
('infiniti', 'Infiniti vehicle parts and components', 1),
('mazda', 'Mazda vehicle parts and components', 1),
('subaru', 'Subaru vehicle parts and components', 1),
('mitsubishi', 'Mitsubishi vehicle parts and components', 1),
('suzuki', 'Suzuki vehicle parts and components', 1),
('daihatsu', 'Daihatsu vehicle parts and components', 1),
('isuzu', 'Isuzu vehicle parts and components', 1),
('mercedes-benz', 'Mercedes-Benz vehicle parts and components', 1),
('bmw', 'BMW vehicle parts and components', 1),
('audi', 'Audi vehicle parts and components', 1),
('volkswagen', 'Volkswagen vehicle parts and components', 1),
('porsche', 'Porsche vehicle parts and components', 1),
('opel', 'Opel vehicle parts and components', 1),
('maybach', 'Maybach vehicle parts and components', 1),
('smart', 'Smart vehicle parts and components', 1),
('ford', 'Ford vehicle parts and components', 1),
('chevrolet', 'Chevrolet vehicle parts and components', 1),
('gmc', 'GMC vehicle parts and components', 1),
('cadillac', 'Cadillac vehicle parts and components', 1),
('buick', 'Buick vehicle parts and components', 1),
('chrysler', 'Chrysler vehicle parts and components', 1),
('dodge', 'Dodge vehicle parts and components', 1),
('jeep', 'Jeep vehicle parts and components', 1),
('tesla', 'Tesla vehicle parts and components', 1),
('lincoln', 'Lincoln vehicle parts and components', 1),
('rivian', 'Rivian vehicle parts and components', 1),
('lucid', 'Lucid vehicle parts and components', 1),
('hyundai', 'Hyundai vehicle parts and components', 1),
('kia', 'Kia vehicle parts and components', 1),
('genesis', 'Genesis vehicle parts and components', 1),
('ssangyong', 'SsangYong vehicle parts and components', 1),
('peugeot', 'Peugeot vehicle parts and components', 1),
('renault', 'Renault vehicle parts and components', 1),
('citroën', 'Citroën vehicle parts and components', 1),
('ds automobiles', 'DS Automobiles vehicle parts and components', 1),
('ferrari', 'Ferrari vehicle parts and components', 1),
('lamborghini', 'Lamborghini vehicle parts and components', 1),
('fiat', 'Fiat vehicle parts and components', 1),
('alfa romeo', 'Alfa Romeo vehicle parts and components', 1),
('maserati', 'Maserati vehicle parts and components', 1),
('lancia', 'Lancia vehicle parts and components', 1),
('rolls-royce', 'Rolls-Royce vehicle parts and components', 1),
('bentley', 'Bentley vehicle parts and components', 1),
('jaguar', 'Jaguar vehicle parts and components', 1),
('land rover', 'Land Rover vehicle parts and components', 1),
('mini', 'Mini vehicle parts and components', 1),
('aston martin', 'Aston Martin vehicle parts and components', 1),
('mclaren', 'McLaren vehicle parts and components', 1),
('lotus', 'Lotus vehicle parts and components', 1),
('volvo', 'Volvo vehicle parts and components', 1),
('polestar', 'Polestar vehicle parts and components', 1),
('koenigsegg', 'Koenigsegg vehicle parts and components', 1),
('byd', 'BYD vehicle parts and components', 1),
('geely', 'Geely vehicle parts and components', 1),
('chery', 'Chery vehicle parts and components', 1),
('great wall', 'Great Wall vehicle parts and components', 1),
('haval', 'Haval vehicle parts and components', 1),
('saic', 'SAIC vehicle parts and components', 1),
('mg', 'MG vehicle parts and components', 1),
('roewe', 'Roewe vehicle parts and components', 1),
('nio', 'NIO vehicle parts and components', 1),
('xpeng', 'XPeng vehicle parts and components', 1),
('li auto', 'Li Auto vehicle parts and components', 1),
('tata motors', 'Tata Motors vehicle parts and components', 1),
('mahindra', 'Mahindra vehicle parts and components', 1),
('maruti suzuki', 'Maruti Suzuki vehicle parts and components', 1),
('ashok leyland', 'Ashok Leyland vehicle parts and components', 1),
('force motors', 'Force Motors vehicle parts and components', 1),
('seat', 'SEAT vehicle parts and components', 1),
('cupra', 'CUPRA vehicle parts and components', 1),
('škoda', 'Škoda vehicle parts and components', 1),
('dacia', 'Dacia vehicle parts and components', 1);

