-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 08, 2025 at 06:53 PM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.2.12

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `huntv`
--

-- --------------------------------------------------------

--
-- Table structure for table `media`
--

CREATE TABLE `media` (
  `id` int(11) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(255) NOT NULL,
  `file_type` enum('image','pdf','video','audio','other') NOT NULL,
  `file_size` int(11) NOT NULL,
  `uploaded_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `uploader_id` int(11) DEFAULT NULL,
  `description` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `media`
--

INSERT INTO `media` (`id`, `file_name`, `file_path`, `file_type`, `file_size`, `uploaded_at`, `uploader_id`, `description`) VALUES
(1, 'file1736187949556.jpg', '/uploads/images', 'image', 164, '2025-01-06 18:25:49', NULL, NULL),
(2, 'file1736187995430.jpg', '/uploads/images', 'image', 338, '2025-01-06 18:26:35', NULL, NULL),
(3, 'file1736188076349.jpg', '/uploads/images', 'image', 76, '2025-01-06 18:27:56', NULL, NULL),
(4, 'file1736195023327.jpg', '/uploads/images', 'image', 344, '2025-01-06 20:23:43', NULL, NULL),
(5, 'file1736195023324.jpg', '/uploads/images', 'image', 119, '2025-01-06 20:23:43', NULL, NULL),
(6, 'file1736195033654.jpg', '/uploads/images', 'image', 338, '2025-01-06 20:23:53', NULL, NULL),
(7, 'file1736196015468.jpg', '/uploads/images', 'image', 108, '2025-01-06 20:40:15', NULL, NULL),
(8, 'file1736196044635.jpg', '/uploads/images', 'image', 260, '2025-01-06 20:40:44', NULL, NULL),
(9, 'file1736196085395.jpg', '/uploads/images', 'image', 331, '2025-01-06 20:41:25', NULL, NULL),
(10, 'file1736199201588.jpg', '/uploads/images', 'image', 330, '2025-01-06 21:33:21', NULL, NULL),
(11, 'file1736199201587.jpg', '/uploads/images', 'image', 309, '2025-01-06 21:33:21', NULL, NULL),
(12, 'file1736199201586.jpg', '/uploads/images', 'image', 317, '2025-01-06 21:33:21', NULL, NULL),
(13, 'file1736199356796.jpg', '/uploads/images', 'image', 208, '2025-01-06 21:35:56', NULL, NULL),
(14, 'file1736199420235.jpg', '/uploads/images', 'image', 90, '2025-01-06 21:37:00', NULL, NULL),
(15, 'file1736201374883.jpg', '/uploads/images', 'image', 342, '2025-01-06 22:09:34', NULL, NULL),
(16, 'file1736201460130.jpg', '/uploads/images', 'image', 114, '2025-01-06 22:11:00', NULL, NULL),
(17, 'file1736201460129.jpg', '/uploads/images', 'image', 89, '2025-01-06 22:11:00', NULL, NULL),
(18, 'file1736204344456.jpg', '/uploads/images', 'image', 339, '2025-01-06 22:59:04', NULL, NULL),
(19, 'file1736204357814.jpg', '/uploads/images', 'image', 82, '2025-01-06 22:59:17', NULL, NULL),
(20, 'file1736208164095.jpg', '/uploads/images', 'image', 94, '2025-01-07 00:02:44', NULL, NULL),
(21, 'file1736208164099.jpg', '/uploads/images', 'image', 390, '2025-01-07 00:02:44', NULL, NULL),
(22, 'file1736355242873.png', '/uploads/images', 'image', 210, '2025-01-08 16:54:02', NULL, NULL),
(23, 'file1736356141526.png', '/uploads/images', 'image', 585, '2025-01-08 17:09:01', NULL, NULL),
(24, 'file1736356466288.png', '/uploads/images', 'image', 144, '2025-01-08 17:14:26', NULL, NULL),
(25, 'file1736356711156.png', '/uploads/images', 'image', 144, '2025-01-08 17:18:31', NULL, NULL),
(26, 'file1736356726635.png', '/uploads/images', 'image', 242, '2025-01-08 17:18:46', NULL, NULL),
(27, 'file1736356960044.png', '/uploads/images', 'image', 184, '2025-01-08 17:22:40', NULL, NULL),
(28, 'file1736358440144.png', '/uploads/images', 'image', 184, '2025-01-08 17:47:20', NULL, NULL),
(29, 'file1736358667730.png', '/uploads/images', 'image', 242, '2025-01-08 17:51:07', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `model`
--

CREATE TABLE `model` (
  `id` int(11) NOT NULL,
  `model` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `productUrl` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `specification` text DEFAULT NULL,
  `standardEquipments` text DEFAULT NULL,
  `userManual` text DEFAULT NULL,
  `thumbnail` int(11) NOT NULL,
  `bannerImage` int(11) NOT NULL,
  `price` decimal(10,2) DEFAULT 0.00,
  `stock` int(11) DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `model`
--

INSERT INTO `model` (`id`, `model`, `title`, `productUrl`, `description`, `specification`, `standardEquipments`, `userManual`, `thumbnail`, `bannerImage`, `price`, `stock`, `created_at`) VALUES
(1, 'GAME CHANGER', 'ALL-ELECTRIC 4X4', 'all-electric-4x4-game-changer', NULL, '[\"72 VOLT ALL ELECTRIC SYSTEM\",\"1200 AMP CONTROLLER POWER\",\"DUAL DIRECT DRIVE MOTORS (36 HP)\",\"SIZE: 113 X 57 X 76 (L X W X H)\",\"950 LB VEHICLE CAPACITY\",\"DIGITAL DISPLAY (SPEED, DISTANCE, TRIP, TIME)\",\"FOUR WHEEL INDEPENDENT SUSPENSION\",\"FOUR WHEEL HYDRAULIC BRAKES\",\"LOCKING GLOVE BOX\",\"25 MPH TOP SPEED\",\"PROTECTIVE SIDE DOORS\",\"MAX RANGER BATTERIES\",\"2\\\" REAR RECEIVER HITCH\",\"25\\\" ALL TERRAIN 6-PLY TIRES\"]', '[\"POWER CARGO DUMP BED (35 X 32 X 9) 5.8 CF\",\"ON-BOARD BATTERY CHARGER 110V\",\"STATE OF CHARGE METER\",\"SEAT BELTS\",\"LED HEAD/TAIL LIGHTS\",\"CAMOUFLAGE STANDARD?\",\"2 PASSENGER SEATING\"]', '/uploads/documents/userManual1736188082688.pdf', 2, 1, 24325.00, 0, '2025-01-06 18:28:02'),
(2, 'GAME CHANGER CREW', 'ALL-ELECTRIC 4X4', 'all-electric-4x4-game-changer-crew', NULL, '[\"72 VOLT ALL ELECTRIC SYSTEM\",\"SIZE: 137 X 57 X 92 (LXWXH)\",\"2\\\" REAR RECEIVER HITCH\",\"DUAL DIRECT DRIVE MOTORS (40 HP)\",\"25 MPH TOP SPEED\",\"MAX RANGER BATTERIES\",\"DIGITAL DISPLAY (SPEED, DISTANCE, TRIP, TIME)\",\"FOUR WHEEL INDEPENDENT SUSPENSION\",\"1200 AMP CONTROLLER POWER\",\"25\\\" ALL TERRAIN 6-PLY TIRES\",\"FOUR WHEEL HYDRAULIC BRAKES\",\"PROTECTIVE SIDE DOORS\",\"1200 LB VEHICLE CAPACITY\"]', '[\"ON-BOARD BATTERY CHARGER 110V\",\"STATE OF CHARGE METER\",\"LED HEAD/TAIL LIGHTS\",\"SEAT BELTS\",\"POWER DUMP BED (35x32x9) 5.8 CF\",\"CAMOUFLAGE STANDARD\",\"4 PASSENGER SEATING \",\"ALL-TERRAIN 4WD\"]', '/uploads/documents/userManual1736195076151.pdf', 6, 4, 26995.00, 0, '2025-01-06 20:24:36'),
(3, 'TERLINGUA', 'ALL-ELECTRIC 4X4', 'all-electric-4x4-terlingua', NULL, '[\"DUAL DIRECT DRIVE MOTORS (36 HP COMBINED)\",\"1200 AMP MAX ELECTRONIC CONTROLLER POWER\",\"72 VOLT ELECTRIC SYSTEM\",\"2\\\" REAR RECEIVER HITCH\",\"CARGO BOX SIZE: 35 X 32 X 9 (5.9 CF)\",\"DIMENSIONS: 113 X 57 X 76 (L X W X H)\",\"FRONT SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"VEHICLE CAPACITY: 950 LBS\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\"]', '[\"POWER DUMP BED\",\"LED HEAD/TAIL LIGHTS\",\"ON-BOARD BATTERY CHARGER 110V\",\"ALUMINUM 12\",\"BRUSH GUARD\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"ALL-TERRAIN 4WD\",\"2 PASSENGER SEATING AND CARGO BOX\",\"CUSTOM TWO-TONE SEAT\",\"STANDARD LENGTH COVERED ROOF TOP\"]', '/uploads/documents/userManual1736196179095.pdf', 9, 8, 22850.00, 0, '2025-01-06 20:42:59'),
(4, 'TERLINGUA', 'ALL-ELECTRIC 4X4 CREW', 'all-electric-4x4-crew-terlingua', NULL, '[\"DUAL DIRECT DRIVE MOTORS (40 HP COMBINED)\",\"1200 AMP MAX ELECTRONIC CONTROLLER POWER\",\"72 VOLT ELECTRIC SYSTEM\",\"2\\\" REAR RECEIVER HITCH\",\"CARGO BOX SIZE: 35 X 32 X 9 (5.9 CF)\",\"DIMENSIONS: 137 x 57 x 82 (L X W X H)\",\"FRONT SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"REAR SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"VEHICLE CAPACITY: 1200 LBS\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\"]', '[\"POWER DUMP BED\",\"LED HEAD/TAIL LIGHTS\",\"ON-BOARD BATTERY CHARGER 110V\",\"ALUMINUM 12\",\"BRUSH GUARD\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"ALL-TERRAIN 4WD\",\"4 PASSENGER SEATING AND CARGO BOX\",\"CUSTOM TWO-TONE SEATS\",\"CREW LENGTH COVERED ROOF TOP\"]', NULL, 29, 13, 27498.00, 0, '2025-01-06 21:43:15'),
(5, 'Electra', 'LITHIUM 4X4', 'lithium-4x4-electra', NULL, '[\"Battery: 72 Volt Lithium (15.3kWh)\",\"Front/Rear tires: 26x11x14\",\"LED Head/Tail/Brake Lights\",\"Range Capacity: 45-50 miles in moderate terrain (Utility), 30-40 (Crew)\",\"Electric Power Steering (Standard in Crew model only)\",\"Curb Weight: 1399 lb (Utility), 1550 lb (Crew)\",\"Color choice: Carbon White, (Also available in Black, Gray, or Camoflauge\",\"25 MPH Top Speed\",\"Instruments: speedometer, odometer\",\"3 Point Seat Belts\",\"Four Wheel Independent Suspension\"]', '[\"15.3kw HI-POWERED LITHIUM BATTERY SYSTEM\",\"LED HEAD/TAIL LIGHTS\",\"POWER DUMP BED\",\"ON-BOARD BATTERY CHARGER \",\"ALUMINUM 14\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"2 OR 4 PASSENGER SEATING AND CARGO BOX\",\"BLACK CUSTOM SEATS\",\"STANDARD LENGTH COVERED ROOF TOP\",\"ELECTRIC POWER STEERING (CREW MODEL ONLY)\"]', NULL, 22, 15, 27399.00, 0, '2025-01-06 22:15:21'),
(6, 'Electra CREW', 'LITHIUM 4X4', 'lithium-4x4-electra-crew', NULL, '[\"Battery: 72 Volt Lithium (15.3kWh)\",\"Front/Rear tires: 26x11x14\",\"LED Head/Tail/Brake Lights\",\"Range Capacity: 45-50 miles in moderate terrain (Utility), 30-40 (Crew)\",\"Electric Power Steering (Standard in Crew model only)\",\"Curb Weight: 1399 lb (Utility), 1550 lb (Crew)\",\"Color choice: Carbon White, (Also available in Black, Gray, or Camoflauge\",\"25 MPH Top Speed\",\"Instruments: speedometer, odometer\",\"3 Point Seat Belts\",\"Four Wheel Independent Suspension\"]', '[\"15.3kw HI-POWERED LITHIUM BATTERY SYSTEM\",\"LED HEAD/TAIL LIGHTS\",\"POWER DUMP BED\",\"ON-BOARD BATTERY CHARGER \",\"ALUMINUM 14\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"2 OR 4 PASSENGER SEATING AND CARGO BOX\",\"BLACK CUSTOM SEATS\",\"STANDARD LENGTH COVERED ROOF TOP\",\"ELECTRIC POWER STEERING (CREW MODEL ONLY)\"]', NULL, 23, 15, 29899.00, 0, '2025-01-06 22:47:31'),
(7, 'ONRANGE', 'ALL-ELECTRIC 4X2', 'all-electric-4x2-onrange', NULL, '[\"SINGLE DIRECT DRIVE MOTOR \",\"600 AMP MAX ELECTRONIC CONTROLLER POWER\",\"72 VOLT ELECTRIC SYSTEM\",\"2\\\" REAR RECEIVER HITCH\",\"CARGO BOX SIZE: 35 X 32 X 9 (5.9 CF)\",\"DIMENSIONS: 113 X 57 X 76 (L X W X H)\",\"FRONT SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"VEHICLE CAPACITY: 950 LBS\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\"]', '[\"POWER DUMP BED\",\"LED HEAD/TAIL LIGHTS\",\"ON-BOARD BATTERY CHARGER 110V?\",\"BRUSH GUARD\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"2 PASSENGER SEATING AND CARGO BOX\"]', NULL, 24, 7, 19649.00, 0, '2025-01-06 23:09:40'),
(8, 'ONRANGE', 'ALL-ELECTRIC 4X2 CREW', 'all-electric-4x2-crew-onrange', NULL, '[\"SINGLE DIRECT DRIVE MOTOR \",\"600 AMP MAX ELECTRONIC CONTROLLER POWER\",\"72 VOLT ELECTRIC SYSTEM\",\"2\\\" REAR RECEIVER HITCH\",\"CARGO BOX SIZE: 35 X 32 X 9 (5.9 CF)\",\"DIMENSIONS: 113 X 57 X 76 (L X W X H)\",\"FRONT SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"VEHICLE CAPACITY: 950 LBS\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\"]', '[\"POWER DUMP BED\",\"LED HEAD/TAIL LIGHTS\",\"ON-BOARD BATTERY CHARGER 110V?\",\"BRUSH GUARD\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"2 PASSENGER SEATING AND CARGO BOX\"]', NULL, 26, 18, 21995.00, 0, '2025-01-06 23:26:42'),
(9, 'ONRANGE', 'HYBRID-ELECTRIC 4X2 CREW', 'hybrid-electric-4x2-crew-onrange', NULL, '[\"SINGLE DIRECT DRIVE MOTOR \",\"600 AMP MAX ELECTRONIC CONTROLLER POWER\",\"72 VOLT ELECTRIC SYSTEM\",\"2\\\" REAR RECEIVER HITCH\",\"CARGO BOX SIZE: 35 X 32 X 9 (5.9 CF)\",\"DIMENSIONS: 113 X 57 X 76 (L X W X H)\",\"FRONT SUSPENSION: INDEPENDENT DOUBLE WISHBONE\",\"VEHICLE CAPACITY: 950 LBS\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\"]', '[\"POWER DUMP BED\",\"LED HEAD/TAIL LIGHTS\",\"ON-BOARD BATTERY CHARGER 110V?\",\"BRUSH GUARD\",\"STATE OF ART CHARGE METER\",\"SEAT BELTS\",\"2 PASSENGER SEATING AND CARGO BOX\"]', NULL, 27, 18, 31895.00, 0, '2025-01-06 23:42:39'),
(10, 'SWITCHBACK HYBRID', 'ALL-ELECTRIC 4X4', 'all-electric-4x4-switchback-hybrid', NULL, '[\"72 VOLT ALL-ELECTRIC SYSTEM\",\"FOUR WHEEL INDEPENDENT SUSPENSION\",\"460CC GAS 4 - CYCLE RANGE ASSIST GENERATOR\",\"1200 AMP CONTROLLER POWER\",\"SIZE: 137 X 57 X 82 (L x W X H)\",\"2\\\" REAR RECEIVER HITCH\",\"25\\\" ALL-TERRAIN 6-PLY TIRES\",\"DUAL DIRECT DRIVE MOTORS (40 HP)\",\"FOUR WHEEL HYDRAULIC BRAKES\",\"25 MPH TOP SPEED\",\"PROTECTIVE SIDE DOORS\",\"MAX RANGER BATTERIES (FLA)\",\"1200 LB VEHICLE CAPACITY\",\"DIGITAL DISPLAY (SPEED, DISTANCE, TRIP, TIME)\",\"LOCKING GLOVE BOX\"]', '[\"POWER CARGO DUMP BED (35 X 32 X 9) 5.8 CF\",\"ON-BOARD BATTERY CHARGER 110V\",\"STATE OF CHARGE METER\",\"SEAT BELTS\",\"LED HEAD/TAIL LIGHTS\",\"CAMOUFLAGE STANDARD\",\"ALL-TERRAIN 4WD\",\"4 PASSENGER SEATING\"]', NULL, 28, 21, 33998.00, 0, '2025-01-07 00:04:53');

-- --------------------------------------------------------

--
-- Table structure for table `modelsection`
--

CREATE TABLE `modelsection` (
  `id` int(11) NOT NULL,
  `model` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `subtitle` varchar(255) NOT NULL,
  `additionalText` varchar(255) NOT NULL,
  `image` int(11) NOT NULL,
  `price` decimal(10,2) DEFAULT 0.00,
  `description` text DEFAULT NULL,
  `orderSequence` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `modelsection`
--

INSERT INTO `modelsection` (`id`, `model`, `title`, `subtitle`, `additionalText`, `image`, `price`, `description`, `orderSequence`, `created_at`) VALUES
(1, 1, ' GAME CHANGER ALL-ELECTRIC 4X4 UTILITY VEHICLE', 'BASE MSRP:', 'Plus Optional Equipment and Destination Charges', 3, 24325.00, '<p>The all new HuntVe 4x4 Game Changer™ is the planet’s most dynamic electric 4x4 UTV. With dual direct drive motors, no single motor electric UTV can compete with the smooth power that comes from this 72 volt stealth machine.</p><p>Forget for a moment the fact that the 38 HP available is more torque than almost all gasoline powered UTVs have in this size category - the ride of the double wishbone 4-wheel independent suspension, 1200 lb hauling capacity and the best in class off road range combines to create the ultimate driving machine.&nbsp;</p>', 1, '2025-01-06 18:28:02'),
(2, 2, 'GAME CHANGER ALL-ELECTRIC 4X4 CREW UTV', 'BASE MSRP: ', 'Plus Optional Equipment and Destination Charges', 5, 26995.00, '<p>Get ready to roll!&nbsp; The Game Changer™ 4x4 Crew has the industry\'s best power and range - not to mention the 4-wheel independent smooth ride suspension.&nbsp; This is sporting luxury.&nbsp; With dual direct drive motors (40HP), there is not a drive shaft, belt, or chain to make unnecessary noise while exploring the outdoors.&nbsp; Made in the USA, nothing matches the quality and ingenuity of HuntVe.</p><p>The Game Changer 4x4 Crew has seating for 4 as well as a power dump cargo bed.&nbsp; Easy to maintain and .03 Per Mile to operate in electric..</p>', 1, '2025-01-06 20:24:36'),
(3, 3, 'TERLINGUA ALL-ELECTRIC 4X4 UTILITY VEHICLE', 'BASE MSRP:', 'Plus Optional Equipment and Destination Charges', 7, 22850.00, '<p>Introducing the bold and exhilarating Limited Edition Terlingua 4x4 from HuntVe\'s cutting-edge lineup of electric UTVs! Now supercharged with a 7.6 kWh lithium battery pack, the Terlingua features a 72-volt high-performance electric system and dual motor technology, giving you an unmatched ride that\'s fast, smooth, and whisper-quiet.</p><p>This model continues to stand out with its fearless design, available in striking injection-molded Black, Montana Blue, Sage Green, Terlingua Orange, and Fire Red. Beneath its sleek exterior lies the most powerful motor combination in HuntVe history, pumping out an adrenaline-pumping 36 HP. Combined with 4-wheel independent suspension, rugged 25\" 6-ply tires, and optional electronic power steering, the Terlingua delivers a stealthy, high-performance ride that redefines the alternative fuel UTV experience.</p>', 1, '2025-01-06 20:42:59'),
(4, 4, 'TERLINGUA CREW ALL-ELECTRIC 4X4 UTILITY VEHICLE', 'BASE MSRP:', 'Plus Optional Equipment and Destination Charges', 14, 27498.00, '<p>Introducing the thrilling Limited Edition Terlingua 4x4 Crew from HuntVe\'s electrifying lineup of UTVs, now powered by a robust 7.2 kWh lithium battery pack! Featuring a 72-volt high-performance electric system and dual motor technology, the all-electric Terlingua takes off-road excitement to a whole new level, ensuring you get there in style and silence.</p><p>HuntVe breaks away from tradition with this model, trading camouflage for bold, eye-catching injection-molded colors like Black, Gray, Montana Blue, Sage Green, Terlingua Orange, and Fire Red. Premium details like 12-inch custom power-coated aluminum wheels, two-tone seats, and a rugged brush guard add a touch of sophistication and grit.</p><p>Powered by the most potent motor combination in the HuntVe lineup, the Terlingua packs a punch with 40 HP. Its 4-wheel independent suspension, 25\" 6-ply tires, and standard electronic power steering combine to deliver the ultimate in stealth, performance, and off-road power, redefining the alternative fuel side-by-side experience.</p>', 1, '2025-01-06 21:43:15'),
(5, 5, 'ELECTRA™ LITHIUM 4X4 UTILITY ', 'Utility MSRP:', 'Plus Optional Equipment and Destination Charges', 17, 27399.00, '<p>HuntVe™ is excited to introduce a new powerful model to its side x side UTV lineup – the all new lithium electric powered ELECTRA™ 4x4.&nbsp; It is offered in two model configurations, the Utility 2 passenger and the Crew 4 passenger.&nbsp; The Electra™ features a performance driven 210 Ah (15.3 kWh) lithium LifePo4 battery system with automatic smart on-board recharging system (120v). This will increase the range of the new HuntVe™ by 50% when compared with a flooded lead acid (FLA) battery pack. &nbsp;This new lithium LifePo4 battery system improves acceleration, reduce maintenance and have battery life expectancy over 5X longer than FLA.</p><p>The Electra™ comes standard with 14” aluminum wheels, 26” tires, and a white carbon fiber polymer body. The Electra™ is available in other solid colors as a standard option and Realtree™ Camouflage is available as an upgrade. The Electra™ has a vehicle capacity of 1,500 lbs. and just like all HuntVe™ vehicles, the Electra™ comes with 4 wheel independent smooth ride suspension, 4 wheel hydraulic brakes, power dump bed, full time 4WD, and more.</p><p>The Electra™ is like nothing the side x side UTV market has seen and offers state of the art battery technology at an affordable price.&nbsp;</p>', 1, '2025-01-06 22:15:21'),
(6, 6, 'Electra™ Lithium 4x4 EPS Crew', 'Crew MSRP:', 'Plus Optional Equipment and Destination Charges', 16, 29899.00, '<p>The new HuntVe™ 4x4 72 Volt Lithium LiFePO4 ELECTRA™ provides the best performance, quality, and durability in its class. &nbsp; Experience the outdoors like never before in the quiet all electric ELECTRA™.&nbsp; With uncompromised workmanship, this all electric UTV is sporting luxury.&nbsp; No other electric UTV can match the dual motor capability of this American made vehicle (25MPH top speed). &nbsp; The Electra™ is a bold, yet reaffirming driving experience of power and handling.</p>', 1, '2025-01-06 22:47:31'),
(7, 7, 'ONRANGE™ ALL-ELECTRIC 4X2 UTILITY VEHICLE', 'BASE MSRP', 'Plus Optional Equipment and Destination Charges', 19, 19649.00, '<p>Introducing the all-new Onrange™ 4x2 from HuntVe™, a sleek addition to the electric UTV lineup, now powered by a 7.2 kWh lithium battery pack and a 72-volt high-performance electric system. Built for smooth rides when four-wheel drive isn\'t necessary, the all-electric Onrange™ offers the perfect balance of comfort and performance, hitting speeds of up to 25 MPH while featuring LED lights for enhanced visibility.</p><p>Choose from bold, injection-molded colors like Black, Montana Blue, Sage Green, Orange, Fire Red, or Realtree™ camouflage. Underneath, the Onrange™ is powered by a high-output stealth motor, with 4-wheel independent suspension and 25\" 6-ply tires for a comfortable yet powerful ride. For even greater control, opt for electronic power steering.&nbsp;</p><p>Available in two configurations: a single bench model for two people with cargo or a double bench Crew design for four, both offering maximum utility for on and off-road adventures. The Onrange™ is your go-to for versatile, enjoyable electric UTV performance.</p>', 1, '2025-01-06 23:09:40'),
(8, 8, 'ONRANGE™ ALL-ELECTRIC 4X2 CREW', 'BASE MSRP:', 'Plus Optional Equipment and Destination Charges', 19, 21995.00, '<p>Introducing the all-new Onrange™ 4x2 from HuntVe™, a sleek addition to the electric UTV lineup, now powered by a 7.2 kWh lithium battery pack and a 72-volt high-performance electric system. Built for smooth rides when four-wheel drive isn\'t necessary, the all-electric Onrange™ offers the perfect balance of comfort and performance, hitting speeds of up to 25 MPH while featuring LED lights for enhanced visibility.</p><p>Choose from bold, injection-molded colors like Black, Montana Blue, Sage Green, Orange, Fire Red, or Realtree™ camouflage. Underneath, the Onrange™ is powered by a high-output stealth motor, with 4-wheel independent suspension and 25\" 6-ply tires for a comfortable yet powerful ride. For even greater control, opt for electronic power steering.&nbsp;</p><p>Available in two configurations: a single bench model for two people with cargo or a double bench Crew design for four, both offering maximum utility for on and off-road adventures. The Onrange™ is your go-to for versatile, enjoyable electric UTV performance.</p>', 1, '2025-01-06 23:26:42'),
(9, 9, ' ONRANGE™ HYBRID-ELECTRIC 4X2 CREW', 'BASE MSRP', 'Plus Optional Equipment and Destination Charges', 19, 31893.00, '<p>Introducing the all-new Onrange™ 4x2 from HuntVe™, a sleek addition to the electric UTV lineup, now powered by a 7.2 kWh lithium battery pack and a 72-volt high-performance electric system. Built for smooth rides when four-wheel drive isn\'t necessary, the all-electric Onrange™ offers the perfect balance of comfort and performance, hitting speeds of up to 25 MPH while featuring LED lights for enhanced visibility.</p><p>Choose from bold, injection-molded colors like Black, Montana Blue, Sage Green, Orange, Fire Red, or Realtree™ camouflage. Underneath, the Onrange™ is powered by a high-output stealth motor, with 4-wheel independent suspension and 25\" 6-ply tires for a comfortable yet powerful ride. For even greater control, opt for electronic power steering.&nbsp;</p><p>Available in two configurations: a single bench model for two people with cargo or a double bench Crew design for four, both offering maximum utility for on and off-road adventures. The Onrange™ is your go-to for versatile, enjoyable electric UTV performance.</p>', 1, '2025-01-06 23:42:39'),
(10, 10, ' SWITCHBACK CREW HYBRID-ELECTRIC  4X4 UTILITY VEHICLE', 'BASE MSRP:', 'Plus Optional Equipment and Destination Charges', 20, 33995.00, '<p>Get ready for the ultimate outdoor adventures! The Switchback 4x4 Crew is built to thrill, offering seating for four and ample cargo space. With its clean, silent, and odor-free power, now driven by cutting-edge 15.3 kWh lithium batteries, you\'ll experience the wilderness like never before. And when the charge dips low, just fire up the exclusive 460cc gas-run quiet generator with a single button for endless exploration.</p><p>This HuntVe doesn\'t just tackle the outdoors - it *lives* it. Blending smooth, powerful performance with next-gen battery tech, it redefines what a premium off-road electric UTV can be. Charge into the outdoors!</p>', 1, '2025-01-07 00:04:53');

-- --------------------------------------------------------

--
-- Table structure for table `modelvariationattribute`
--

CREATE TABLE `modelvariationattribute` (
  `id` int(11) NOT NULL,
  `model` int(11) NOT NULL,
  `combination` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`combination`)),
  `image` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `modelvariationattribute`
--

INSERT INTO `modelvariationattribute` (`id`, `model`, `combination`, `image`, `created_at`) VALUES
(1, 1, '[42]', 2, '2025-01-06 19:28:49'),
(2, 2, '[43]', 6, '2025-01-06 20:36:16'),
(3, 3, '[128]', 9, '2025-01-06 21:33:00'),
(4, 3, '[129]', 11, '2025-01-06 21:33:00'),
(5, 3, '[130]', 10, '2025-01-06 21:33:00'),
(6, 3, '[131]', 12, '2025-01-06 21:33:00'),
(7, 5, '[418]', 22, '2025-01-08 17:13:14'),
(8, 7, '[420]', 24, '2025-01-08 17:16:39'),
(9, 8, '[422]', 26, '2025-01-08 17:19:37'),
(10, 9, '[423]', 27, '2025-01-08 17:45:50'),
(11, 10, '[424]', 28, '2025-01-08 17:49:17'),
(12, 4, '[425]', 29, '2025-01-08 17:52:17');

-- --------------------------------------------------------

--
-- Table structure for table `modelvariationtype`
--

CREATE TABLE `modelvariationtype` (
  `id` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `valuetype` enum('color','text') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `modelvariationtype`
--

INSERT INTO `modelvariationtype` (`id`, `title`, `valuetype`, `created_at`) VALUES
(1, 'Exterior Color', 'color', '2025-01-06 18:53:21'),
(2, 'Windshields & Accessories', 'text', '2025-01-06 18:53:31'),
(3, 'Differentials & Drive', 'text', '2025-01-06 18:53:43'),
(4, 'Lighting & Visibility', 'text', '2025-01-06 18:54:29'),
(5, 'Electrical & Power', 'text', '2025-01-06 18:54:36'),
(6, 'Mounts & Racks', 'text', '2025-01-06 18:54:42'),
(7, 'Protection & Security', 'text', '2025-01-06 18:54:50'),
(8, 'Seating & Comfort', 'text', '2025-01-06 18:54:56'),
(9, 'Miscellaneous', 'text', '2025-01-06 18:55:02'),
(10, 'Exterior', 'text', '2025-01-06 19:07:39');

-- --------------------------------------------------------

--
-- Table structure for table `modelvariationvalue`
--

CREATE TABLE `modelvariationvalue` (
  `id` int(11) NOT NULL,
  `value` varchar(255) NOT NULL,
  `price` decimal(10,2) DEFAULT 0.00,
  `imageAvailable` tinyint(1) DEFAULT 0,
  `variationType` int(11) NOT NULL,
  `model` int(11) NOT NULL,
  `defaultValue` tinyint(1) DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `image` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `modelvariationvalue`
--

INSERT INTO `modelvariationvalue` (`id`, `value`, `price`, `imageAvailable`, `variationType`, `model`, `defaultValue`, `created_at`, `image`) VALUES
(1, 'Roof Top Standard Length', 449.00, 0, 2, 1, 0, '2025-01-06 18:55:27', NULL),
(2, 'Roof Top Standard Length', 449.00, 0, 2, 1, 0, '2025-01-06 18:56:59', NULL),
(3, '2-Piece Poly Windshield', 359.00, 0, 2, 1, 0, '2025-01-06 18:56:59', NULL),
(4, 'Poly Vented Premium Windshield', 749.00, 0, 2, 1, 0, '2025-01-06 18:56:59', NULL),
(5, 'Solid Glass Windshield', 489.00, 0, 2, 1, 0, '2025-01-06 18:56:59', NULL),
(6, 'Windshield Wiper Option (Glass Only)', 375.00, 0, 2, 1, 0, '2025-01-06 18:56:59', NULL),
(7, 'Auto Locking Rear Differential', 713.00, 0, 3, 1, 0, '2025-01-06 18:57:25', NULL),
(8, 'Auto Locking Front Differential', 713.00, 0, 3, 1, 0, '2025-01-06 18:57:25', NULL),
(9, 'Auto Locking Rear Differential', 713.00, 0, 3, 1, 0, '2025-01-06 18:57:57', NULL),
(10, 'Auto Locking Front Differential', 713.00, 0, 3, 1, 0, '2025-01-06 18:57:57', NULL),
(11, '40 HP-Dual Direct Drive SepEx Motor (20 HP Frt, 20 HP Rear) Upgrade', 549.00, 0, 3, 1, 0, '2025-01-06 18:57:57', NULL),
(12, 'Turn Signals and Horn', 479.00, 0, 4, 1, 0, '2025-01-06 18:59:41', NULL),
(13, 'LED Light Package: Approach Green', 209.00, 0, 4, 1, 0, '2025-01-06 18:59:41', NULL),
(14, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 1, 0, '2025-01-06 18:59:41', NULL),
(15, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 1, 0, '2025-01-06 18:59:41', NULL),
(16, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 1, 0, '2025-01-06 18:59:41', NULL),
(17, 'Turn Signals and Horn', 479.00, 0, 4, 1, 0, '2025-01-06 19:00:02', NULL),
(18, 'LED Light Package: Approach Green', 209.00, 0, 4, 1, 0, '2025-01-06 19:00:02', NULL),
(19, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 1, 0, '2025-01-06 19:00:02', NULL),
(20, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 1, 0, '2025-01-06 19:00:02', NULL),
(21, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 1, 0, '2025-01-06 19:00:02', NULL),
(22, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 1, 0, '2025-01-06 19:01:44', NULL),
(23, 'Winch: 3500lb with Remote and Winch Plate', 949.00, 0, 5, 1, 0, '2025-01-06 19:01:44', NULL),
(24, 'Electric Power Steering', 1525.00, 0, 5, 1, 0, '2025-01-06 19:01:44', NULL),
(25, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 1, 0, '2025-01-06 19:01:44', NULL),
(26, 'UTV Cell Phone Mount', 80.00, 0, 6, 1, 0, '2025-01-06 19:03:54', NULL),
(27, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 1, 0, '2025-01-06 19:03:54', NULL),
(28, 'Roof Mount Bow Rack', 389.00, 0, 6, 1, 0, '2025-01-06 19:03:54', NULL),
(29, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 1, 0, '2025-01-06 19:03:54', NULL),
(30, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 1, 0, '2025-01-06 19:03:54', NULL),
(31, 'Front Boot Guard Set', 425.00, 0, 7, 1, 0, '2025-01-06 19:05:02', NULL),
(32, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 1, 0, '2025-01-06 19:05:02', NULL),
(33, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 1, 0, '2025-01-06 19:05:02', NULL),
(34, 'Tire Sealant Package', 150.00, 0, 7, 1, 0, '2025-01-06 19:05:02', NULL),
(35, 'Mirror Set', 111.00, 0, 9, 1, 0, '2025-01-06 19:07:11', NULL),
(36, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 9, 1, 0, '2025-01-06 19:07:11', NULL),
(37, 'Canvas Weather Enclosure', 1648.00, 0, 9, 1, 0, '2025-01-06 19:07:11', NULL),
(38, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 9, 1, 0, '2025-01-06 19:07:11', NULL),
(39, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in										', 1635.00, 0, 10, 1, 0, '2025-01-06 19:08:53', NULL),
(40, 'Rear Backdraft Window										', 495.00, 0, 10, 1, 0, '2025-01-06 19:08:53', NULL),
(42, '#58402b', 0.00, 1, 1, 1, 0, '2025-01-06 19:28:47', NULL),
(43, '#58402b', 0.00, 1, 1, 2, 0, '2025-01-06 20:25:55', NULL),
(44, 'Roof Top Standard Length', 449.00, 0, 2, 2, 0, '2025-01-06 20:28:40', NULL),
(45, '2-Piece Poly Windshield', 359.00, 0, 2, 2, 0, '2025-01-06 20:28:40', NULL),
(46, 'Poly Vented Premium Windshield', 749.00, 0, 2, 2, 0, '2025-01-06 20:28:40', NULL),
(47, 'Solid Glass Windshield', 489.00, 0, 2, 2, 0, '2025-01-06 20:28:40', NULL),
(48, 'Windshield Wiper Option', 375.00, 0, 2, 2, 0, '2025-01-06 20:28:40', NULL),
(49, 'Roof Top Standard Length', 449.00, 0, 2, 2, 0, '2025-01-06 20:28:52', NULL),
(50, '2-Piece Poly Windshield', 359.00, 0, 2, 2, 0, '2025-01-06 20:28:52', NULL),
(51, 'Poly Vented Premium Windshield', 749.00, 0, 2, 2, 0, '2025-01-06 20:28:52', NULL),
(52, 'Solid Glass Windshield', 489.00, 0, 2, 2, 0, '2025-01-06 20:28:52', NULL),
(53, 'Windshield Wiper Option', 375.00, 0, 2, 2, 0, '2025-01-06 20:28:52', NULL),
(54, 'Auto Locking Rear Differential', 713.00, 0, 3, 2, 0, '2025-01-06 20:29:18', NULL),
(55, 'Auto Locking Front Differential', 713.00, 0, 3, 2, 0, '2025-01-06 20:29:18', NULL),
(56, 'Turn Signals and Horn', 449.00, 0, 4, 2, 0, '2025-01-06 20:30:26', NULL),
(57, 'LED Light Package: Approach Green', 209.00, 0, 4, 2, 0, '2025-01-06 20:30:26', NULL),
(58, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 2, 0, '2025-01-06 20:30:26', NULL),
(59, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 2, 0, '2025-01-06 20:30:26', NULL),
(60, 'LED Round Lights 4\" (set of 2)', 347.00, 0, 4, 2, 0, '2025-01-06 20:30:26', NULL),
(61, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 2, 0, '2025-01-06 20:31:19', NULL),
(62, 'Winch: 3500lb with Remote and Winch Plate', 949.00, 0, 5, 2, 0, '2025-01-06 20:31:19', NULL),
(63, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 2, 0, '2025-01-06 20:31:19', NULL),
(64, 'UTV Cell Phone Mount', 80.00, 0, 6, 2, 0, '2025-01-06 20:32:49', NULL),
(65, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 2, 0, '2025-01-06 20:32:49', NULL),
(66, 'Roof Mount Bow Rack', 388.00, 0, 6, 2, 0, '2025-01-06 20:32:49', NULL),
(67, '4-Gun Bed Mount Clays Gun Rack', 618.00, 0, 6, 2, 0, '2025-01-06 20:32:49', NULL),
(68, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 2, 0, '2025-01-06 20:32:49', NULL),
(69, 'Front Boot Guard Set', 425.00, 0, 7, 2, 0, '2025-01-06 20:33:54', NULL),
(70, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 2, 0, '2025-01-06 20:33:54', NULL),
(71, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 2, 0, '2025-01-06 20:33:54', NULL),
(72, 'Tire Sealant Package', 150.00, 0, 7, 2, 0, '2025-01-06 20:33:54', NULL),
(73, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 2, 0, '2025-01-06 20:34:33', NULL),
(74, 'Bench Black and Gray 2-Tone Premium Seat Upgrade', 299.00, 0, 8, 2, 0, '2025-01-06 20:34:33', NULL),
(75, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(76, 'Mirror Set', 111.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(77, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(78, 'Canvas Weather Enclosure', 1649.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(79, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(80, 'Rear Backdraft Window', 495.00, 0, 9, 2, 0, '2025-01-06 20:36:06', NULL),
(81, '2-Piece Poly Windshield', 359.00, 0, 2, 3, 0, '2025-01-06 20:51:36', NULL),
(82, 'Poly Vented Premium Windshield', 749.00, 0, 2, 3, 0, '2025-01-06 20:51:36', NULL),
(83, 'Solid Glass Windshield', 489.00, 0, 2, 3, 0, '2025-01-06 20:51:36', NULL),
(84, 'Windshield Wiper Option', 375.00, 0, 2, 3, 0, '2025-01-06 20:51:36', NULL),
(85, 'Auto Locking Rear Differential', 713.00, 0, 3, 3, 0, '2025-01-06 20:51:57', NULL),
(86, 'Auto Locking Front Differential', 713.00, 0, 3, 3, 0, '2025-01-06 20:51:57', NULL),
(87, 'Turn Signals and Horn', 449.00, 0, 4, 3, 0, '2025-01-06 20:53:05', NULL),
(88, 'LED Light Package: Approach Green', 209.00, 0, 4, 3, 0, '2025-01-06 20:53:05', NULL),
(89, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 3, 0, '2025-01-06 20:53:05', NULL),
(90, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 3, 0, '2025-01-06 20:53:05', NULL),
(91, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 3, 0, '2025-01-06 20:53:05', NULL),
(92, '110V AC Outlet/Inverter 4000w', 975.00, 0, 5, 3, 0, '2025-01-06 21:18:42', NULL),
(93, 'Electric Power Steering', 1635.00, 0, 5, 3, 0, '2025-01-06 21:18:42', NULL),
(94, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 3, 0, '2025-01-06 21:18:42', NULL),
(95, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 3, 0, '2025-01-06 21:18:42', NULL),
(96, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(97, 'Roof Mount Bow Rack', 389.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(98, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(99, 'Heavy Duty Hood Rack (Brush Guard Already Included)', 360.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(100, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(101, 'UTV Cell Phone Mount', 80.00, 0, 6, 3, 0, '2025-01-06 21:23:49', NULL),
(102, 'Front Boot Guard Set', 425.00, 0, 7, 3, 0, '2025-01-06 21:25:12', NULL),
(103, 'Tire Sealant Package', 150.00, 0, 7, 3, 0, '2025-01-06 21:25:12', NULL),
(104, 'Heavy Duty Mirror Upgrade', 179.00, 0, 7, 3, 0, '2025-01-06 21:25:12', NULL),
(105, 'Canvas Weather Enclosure', 1649.00, 0, 8, 3, 0, '2025-01-06 21:26:10', NULL),
(106, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 8, 3, 0, '2025-01-06 21:26:10', NULL),
(107, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 3, 0, '2025-01-06 21:26:10', NULL),
(108, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 3, 0, '2025-01-06 21:27:05', NULL),
(109, 'Mirror Set', 111.00, 0, 9, 3, 0, '2025-01-06 21:27:05', NULL),
(110, 'Rear Backdraft Window', 495.00, 0, 9, 3, 0, '2025-01-06 21:27:05', NULL),
(111, 'Camouflage - Realtree™', 795.00, 0, 10, 3, 0, '2025-01-06 21:27:38', NULL),
(112, '40 HP-Dual Direct Drive SepEx Motor (20 HP Frt, 20 HP Rear) Upgrade', 549.00, 0, 10, 3, 0, '2025-01-06 21:27:38', NULL),
(113, 'Camouflage - Realtree™', 795.00, 0, 10, 3, 0, '2025-01-06 21:27:45', NULL),
(114, '40 HP-Dual Direct Drive SepEx Motor (20 HP Frt, 20 HP Rear) Upgrade', 549.00, 0, 10, 3, 0, '2025-01-06 21:27:45', NULL),
(115, '110V AC Outlet/Inverter 4000w', 975.00, 0, 5, 3, 0, '2025-01-06 21:28:00', NULL),
(116, 'Electric Power Steering', 1635.00, 0, 5, 3, 0, '2025-01-06 21:28:00', NULL),
(117, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 3, 0, '2025-01-06 21:28:00', NULL),
(118, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 3, 0, '2025-01-06 21:28:00', NULL),
(119, '2-Piece Poly Windshield', 359.00, 0, 2, 3, 0, '2025-01-06 21:28:14', NULL),
(120, 'Poly Vented Premium Windshield', 749.00, 0, 2, 3, 0, '2025-01-06 21:28:14', NULL),
(121, 'Solid Glass Windshield', 489.00, 0, 2, 3, 0, '2025-01-06 21:28:14', NULL),
(122, 'Windshield Wiper Option', 375.00, 0, 2, 3, 0, '2025-01-06 21:28:14', NULL),
(123, '110V AC Outlet/Inverter 4000w', 975.00, 0, 5, 3, 0, '2025-01-06 21:28:57', NULL),
(124, 'Electric Power Steering', 1635.00, 0, 5, 3, 0, '2025-01-06 21:28:57', NULL),
(125, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 3, 0, '2025-01-06 21:28:57', NULL),
(126, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 3, 0, '2025-01-06 21:28:57', NULL),
(127, 'Winch: 3500lb with Remote and Winch Plate										', 949.00, 0, 5, 3, 0, '2025-01-06 21:28:57', NULL),
(128, '#3b404a', 0.00, 1, 1, 3, 0, '2025-01-06 21:32:58', NULL),
(129, '#75902f', 0.00, 1, 1, 3, 0, '2025-01-06 21:32:58', NULL),
(130, '#004cae', 0.00, 1, 1, 3, 0, '2025-01-06 21:32:58', NULL),
(131, '#c41f0c', 0.00, 1, 1, 3, 0, '2025-01-06 21:32:58', NULL),
(132, '2-Piece Poly Windshield', 359.00, 0, 2, 4, 0, '2025-01-06 21:46:49', NULL),
(133, 'Poly Vented Premium Windshield', 749.00, 0, 2, 4, 0, '2025-01-06 21:46:49', NULL),
(134, 'Solid Glass Windshield', 489.00, 0, 2, 4, 0, '2025-01-06 21:46:49', NULL),
(135, 'Windshield Wiper Option', 375.00, 0, 2, 4, 0, '2025-01-06 21:46:49', NULL),
(136, 'Auto Locking Rear Differential', 713.00, 0, 3, 4, 0, '2025-01-06 21:47:15', NULL),
(137, 'Auto Locking Front Differential', 713.00, 0, 3, 4, 0, '2025-01-06 21:47:15', NULL),
(138, 'Turn Signals and Horn', 449.00, 0, 4, 4, 0, '2025-01-06 21:48:42', NULL),
(139, 'LED Light Package: Approach Green', 209.00, 0, 4, 4, 0, '2025-01-06 21:48:42', NULL),
(140, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 4, 0, '2025-01-06 21:48:42', NULL),
(141, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 4, 0, '2025-01-06 21:48:42', NULL),
(142, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 4, 0, '2025-01-06 21:48:42', NULL),
(143, 'Turn Signals and Horn', 449.00, 0, 4, 4, 0, '2025-01-06 21:49:39', NULL),
(144, 'LED Light Package: Approach Green', 209.00, 0, 4, 4, 0, '2025-01-06 21:49:39', NULL),
(145, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 4, 0, '2025-01-06 21:49:39', NULL),
(146, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 4, 0, '2025-01-06 21:49:39', NULL),
(147, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 4, 0, '2025-01-06 21:49:39', NULL),
(148, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 4, 0, '2025-01-06 21:51:00', NULL),
(149, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 4, 0, '2025-01-06 21:51:00', NULL),
(150, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 4, 0, '2025-01-06 21:51:00', NULL),
(151, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 4, 0, '2025-01-06 21:52:54', NULL),
(152, 'Roof Mount Bow Rack', 389.00, 0, 6, 4, 0, '2025-01-06 21:52:54', NULL),
(153, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 4, 0, '2025-01-06 21:52:54', NULL),
(154, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 4, 0, '2025-01-06 21:52:54', NULL),
(155, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 80.00, 0, 6, 4, 0, '2025-01-06 21:52:54', NULL),
(156, 'Front Boot Guard Set', 425.00, 0, 7, 4, 0, '2025-01-06 21:55:15', NULL),
(157, 'Heavy Duty Hood Rack (Brush Guard Already Included)', 360.00, 0, 7, 4, 0, '2025-01-06 21:55:15', NULL),
(158, 'Tire Sealant Package', 150.00, 0, 7, 4, 0, '2025-01-06 21:55:15', NULL),
(159, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 7, 4, 0, '2025-01-06 21:55:15', NULL),
(160, 'Canvas Weather Enclosure', 1649.00, 0, 8, 4, 0, '2025-01-06 21:56:02', NULL),
(161, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 4, 0, '2025-01-06 21:56:02', NULL),
(162, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 8, 4, 0, '2025-01-06 21:56:02', NULL),
(163, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 4, 0, '2025-01-06 21:56:57', NULL),
(164, 'Mirror Set', 111.00, 0, 9, 4, 0, '2025-01-06 21:56:57', NULL),
(165, 'Rear Backdraft Window', 495.00, 0, 9, 4, 0, '2025-01-06 21:56:57', NULL),
(166, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 4, 0, '2025-01-06 21:57:35', NULL),
(167, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 4, 0, '2025-01-06 21:57:35', NULL),
(168, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 4, 0, '2025-01-06 21:57:35', NULL),
(169, 'Winch: 3500lb with Remote and Winch Plate 										', 949.00, 0, 5, 4, 0, '2025-01-06 21:57:35', NULL),
(170, '2-Piece Poly Windshield', 359.00, 0, 2, 5, 0, '2025-01-06 22:19:56', NULL),
(171, 'Poly Vented Premium Windshield', 749.00, 0, 2, 5, 0, '2025-01-06 22:19:56', NULL),
(172, 'Solid Glass Windshield', 488.00, 0, 2, 5, 0, '2025-01-06 22:19:56', NULL),
(173, 'Windshield Wiper Option', 375.00, 0, 2, 5, 0, '2025-01-06 22:19:56', NULL),
(174, 'Auto Locking Rear Differential', 713.00, 0, 3, 5, 0, '2025-01-06 22:21:20', NULL),
(175, 'Auto Locking Front Differential', 713.00, 0, 3, 5, 0, '2025-01-06 22:21:20', NULL),
(176, 'Electric Power Steering', 1635.00, 0, 3, 5, 0, '2025-01-06 22:21:20', NULL),
(177, '40 HP-Dual Direct Drive SepEx Motor (20 HP Frt, 20 HP Rear) Upgrade', 549.00, 0, 3, 5, 0, '2025-01-06 22:21:20', NULL),
(178, 'Turn Signals and Horn', 449.00, 0, 4, 5, 0, '2025-01-06 22:22:21', NULL),
(179, 'LED Light Package: Approach Green', 209.00, 0, 4, 5, 0, '2025-01-06 22:22:21', NULL),
(180, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 5, 0, '2025-01-06 22:22:21', NULL),
(181, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 5, 0, '2025-01-06 22:22:21', NULL),
(182, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 5, 0, '2025-01-06 22:22:21', NULL),
(183, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 5, 0, '2025-01-06 22:24:46', NULL),
(184, 'Heated Lithium Batteries', 800.00, 0, 5, 5, 0, '2025-01-06 22:24:46', NULL),
(185, 'TX-Sized Range Extending 72v Lithium Battery Pack (33% more capacity)', 3300.00, 0, 5, 5, 0, '2025-01-06 22:24:46', NULL),
(186, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 5, 0, '2025-01-06 22:24:46', NULL),
(187, 'UTV Cell Phone Mount', 80.00, 0, 6, 5, 0, '2025-01-06 22:26:22', NULL),
(188, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 5, 0, '2025-01-06 22:26:22', NULL),
(189, 'Roof Mount Bow Rack', 389.00, 0, 6, 5, 0, '2025-01-06 22:26:22', NULL),
(190, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 5, 0, '2025-01-06 22:26:22', NULL),
(191, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 5, 0, '2025-01-06 22:26:23', NULL),
(192, 'Front Boot Guard Set', 425.00, 0, 7, 5, 0, '2025-01-06 22:27:38', NULL),
(193, 'Heavy Duty Hood Rack (Brush Guard Already Included)', 360.00, 0, 7, 5, 0, '2025-01-06 22:27:38', NULL),
(194, 'Tire Sealant Package', 150.00, 0, 7, 5, 0, '2025-01-06 22:27:38', NULL),
(195, 'Heavy Duty Mirror Upgrade', 179.00, 0, 7, 5, 0, '2025-01-06 22:27:38', NULL),
(196, 'Canvas Weather Enclosure', 1649.00, 0, 8, 5, 0, '2025-01-06 22:28:40', NULL),
(197, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 5, 0, '2025-01-06 22:28:40', NULL),
(198, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 8, 5, 0, '2025-01-06 22:28:40', NULL),
(199, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 5, 0, '2025-01-06 22:29:30', NULL),
(200, 'Mirror Set', 111.00, 0, 9, 5, 0, '2025-01-06 22:29:30', NULL),
(201, 'Rear Backdraft Window', 495.00, 0, 9, 5, 0, '2025-01-06 22:29:30', NULL),
(202, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 5, 0, '2025-01-06 22:29:50', NULL),
(203, 'Mirror Set', 111.00, 0, 9, 5, 0, '2025-01-06 22:29:50', NULL),
(204, 'Rear Backdraft Window', 495.00, 0, 9, 5, 0, '2025-01-06 22:29:50', NULL),
(205, 'Winch: 3500lb with Remote and Winch Plate										', 949.00, 0, 9, 5, 0, '2025-01-06 22:29:50', NULL),
(206, 'UTV Cell Phone Mount', 80.00, 0, 6, 5, 0, '2025-01-06 22:30:34', NULL),
(207, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 5, 0, '2025-01-06 22:30:34', NULL),
(208, 'Roof Mount Bow Rack', 389.00, 0, 6, 5, 0, '2025-01-06 22:30:34', NULL),
(209, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 5, 0, '2025-01-06 22:30:34', NULL),
(210, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 5, 0, '2025-01-06 22:30:34', NULL),
(211, '2-Piece Poly Windshield', 359.00, 0, 2, 5, 0, '2025-01-06 22:30:37', NULL),
(212, 'Poly Vented Premium Windshield', 749.00, 0, 2, 5, 0, '2025-01-06 22:30:37', NULL),
(213, 'Solid Glass Windshield', 488.00, 0, 2, 5, 0, '2025-01-06 22:30:37', NULL),
(214, 'Windshield Wiper Option', 375.00, 0, 2, 5, 0, '2025-01-06 22:30:37', NULL),
(215, 'Auto Locking Rear Differential', 713.00, 0, 3, 5, 0, '2025-01-06 22:30:40', NULL),
(216, 'Auto Locking Front Differential', 713.00, 0, 3, 5, 0, '2025-01-06 22:30:40', NULL),
(217, 'Electric Power Steering', 1635.00, 0, 3, 5, 0, '2025-01-06 22:30:40', NULL),
(218, '40 HP-Dual Direct Drive SepEx Motor (20 HP Frt, 20 HP Rear) Upgrade', 549.00, 0, 3, 5, 0, '2025-01-06 22:30:40', NULL),
(219, 'Turn Signals and Horn', 449.00, 0, 4, 5, 0, '2025-01-06 22:30:42', NULL),
(220, 'LED Light Package: Approach Green', 209.00, 0, 4, 5, 0, '2025-01-06 22:30:42', NULL),
(221, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 5, 0, '2025-01-06 22:30:42', NULL),
(222, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 5, 0, '2025-01-06 22:30:42', NULL),
(223, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 5, 0, '2025-01-06 22:30:42', NULL),
(224, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 5, 0, '2025-01-06 22:30:44', NULL),
(225, 'Heated Lithium Batteries', 800.00, 0, 5, 5, 0, '2025-01-06 22:30:44', NULL),
(226, 'TX-Sized Range Extending 72v Lithium Battery Pack (33% more capacity)', 3300.00, 0, 5, 5, 0, '2025-01-06 22:30:44', NULL),
(227, 'Heater/Fan System - 12 volt', 650.00, 0, 5, 5, 0, '2025-01-06 22:30:44', NULL),
(228, 'UTV Cell Phone Mount', 80.00, 0, 6, 5, 0, '2025-01-06 22:30:47', NULL),
(229, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 5, 0, '2025-01-06 22:30:47', NULL),
(230, 'Roof Mount Bow Rack', 389.00, 0, 6, 5, 0, '2025-01-06 22:30:47', NULL),
(231, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 5, 0, '2025-01-06 22:30:47', NULL),
(232, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 5, 0, '2025-01-06 22:30:47', NULL),
(233, 'Front Boot Guard Set', 425.00, 0, 7, 5, 0, '2025-01-06 22:30:49', NULL),
(234, 'Heavy Duty Hood Rack (Brush Guard Already Included)', 360.00, 0, 7, 5, 0, '2025-01-06 22:30:49', NULL),
(235, 'Tire Sealant Package', 150.00, 0, 7, 5, 0, '2025-01-06 22:30:49', NULL),
(236, 'Heavy Duty Mirror Upgrade', 179.00, 0, 7, 5, 0, '2025-01-06 22:30:49', NULL),
(237, 'Canvas Weather Enclosure', 1649.00, 0, 8, 5, 0, '2025-01-06 22:30:52', NULL),
(238, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 5, 0, '2025-01-06 22:30:52', NULL),
(239, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 8, 5, 0, '2025-01-06 22:30:52', NULL),
(240, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 9, 5, 0, '2025-01-06 22:30:54', NULL),
(241, 'Mirror Set', 111.00, 0, 9, 5, 0, '2025-01-06 22:30:54', NULL),
(242, 'Rear Backdraft Window', 495.00, 0, 9, 5, 0, '2025-01-06 22:30:54', NULL),
(243, 'Winch: 3500lb with Remote and Winch Plate										', 949.00, 0, 9, 5, 0, '2025-01-06 22:30:54', NULL),
(244, '2-Piece Poly Windshield', 359.00, 0, 2, 6, 0, '2025-01-06 22:50:10', NULL),
(245, 'Poly Vented Premium Windshield', 749.00, 0, 2, 6, 0, '2025-01-06 22:50:10', NULL),
(246, 'Solid Glass Windshield', 489.00, 0, 2, 6, 0, '2025-01-06 22:50:10', NULL),
(247, 'Windshield Wiper Option', 375.00, 0, 2, 6, 0, '2025-01-06 22:50:10', NULL),
(248, 'Auto Locking Rear Differential', 713.00, 0, 3, 6, 0, '2025-01-06 22:50:31', NULL),
(249, 'Auto Locking Front Differential', 713.00, 0, 3, 6, 0, '2025-01-06 22:50:31', NULL),
(250, 'Turn Signals and Horn', 449.00, 0, 4, 6, 0, '2025-01-06 22:51:37', NULL),
(251, 'LED Light Package: Approach Green', 209.00, 0, 4, 6, 0, '2025-01-06 22:51:37', NULL),
(252, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 6, 0, '2025-01-06 22:51:37', NULL),
(253, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 6, 0, '2025-01-06 22:51:37', NULL),
(254, 'LED Round Lights 4\" (set of 2)', 345.00, 0, 4, 6, 0, '2025-01-06 22:51:37', NULL),
(255, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 6, 0, '2025-01-06 22:52:14', NULL),
(256, 'Heated Lithium Batteries', 800.00, 0, 5, 6, 0, '2025-01-06 22:52:14', NULL),
(257, 'TX-Sized Range Extending 72v Lithium Battery Pack (33% more capacity)', 3300.00, 0, 5, 6, 0, '2025-01-06 22:52:14', NULL),
(258, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 6, 0, '2025-01-06 22:52:51', NULL),
(259, 'Heated Lithium Batteries', 800.00, 0, 5, 6, 0, '2025-01-06 22:52:51', NULL),
(260, 'TX-Sized Range Extending 72v Lithium Battery Pack (33% more capacity)', 3300.00, 0, 5, 6, 0, '2025-01-06 22:52:51', NULL),
(261, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 6, 0, '2025-01-06 22:54:20', NULL),
(262, 'Roof Mount Bow Rack', 389.00, 0, 6, 6, 0, '2025-01-06 22:54:20', NULL),
(263, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 6, 0, '2025-01-06 22:54:20', NULL),
(264, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 6, 0, '2025-01-06 22:54:20', NULL),
(265, 'Front Boot Guard Set', 425.00, 0, 7, 6, 0, '2025-01-06 22:55:15', NULL),
(266, 'Heavy Duty Hood Rack (Brush Guard Already Included)', 360.00, 0, 7, 6, 0, '2025-01-06 22:55:15', NULL),
(267, 'Tire Sealant Package', 150.00, 0, 7, 6, 0, '2025-01-06 22:55:15', NULL),
(268, 'Canvas Weather Enclosure', 1649.00, 0, 8, 6, 0, '2025-01-06 22:55:53', NULL),
(269, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 6, 0, '2025-01-06 22:55:53', NULL),
(270, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 8, 6, 0, '2025-01-06 22:55:53', NULL),
(271, 'UTV Cell Phone Mount', 80.00, 0, 9, 6, 0, '2025-01-06 22:56:19', NULL),
(272, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 10, 6, 0, '2025-01-06 22:57:10', NULL),
(273, 'Mirror Set', 111.00, 0, 10, 6, 0, '2025-01-06 22:57:10', NULL),
(274, 'Heavy Duty Mirror Set Upgrade', 178.00, 0, 10, 6, 0, '2025-01-06 22:57:10', NULL),
(275, 'Rear Backdraft Window', 495.00, 0, 10, 6, 0, '2025-01-06 22:57:10', NULL),
(276, 'UTV Cell Phone Mount', 80.00, 0, 9, 6, 0, '2025-01-06 22:57:28', NULL),
(277, 'Winch: 3500lb with Remote and Winch Plate 										', 949.00, 0, 9, 6, 0, '2025-01-06 22:57:28', NULL),
(278, '110V AC Outlet/Inverter 4000W', 975.00, 0, 5, 6, 0, '2025-01-06 22:58:01', NULL),
(279, 'Heated Lithium Batteries', 800.00, 0, 5, 6, 0, '2025-01-06 22:58:01', NULL),
(280, 'TX-Sized Range Extending 72v Lithium Battery Pack (33% more capacity)', 3300.00, 0, 5, 6, 0, '2025-01-06 22:58:01', NULL),
(281, 'Heater/Fan System - 12 volt										', 650.00, 0, 5, 6, 0, '2025-01-06 22:58:01', NULL),
(282, 'Roof Top Standard Length', 449.00, 0, 2, 7, 0, '2025-01-06 23:12:50', NULL),
(283, '2-Piece Poly Windshield', 359.00, 0, 2, 7, 0, '2025-01-06 23:12:50', NULL),
(284, 'Poly Vented Premium Windshield', 748.00, 0, 2, 7, 0, '2025-01-06 23:12:50', NULL),
(285, 'Solid Glass Windshield', 487.00, 0, 2, 7, 0, '2025-01-06 23:12:50', NULL),
(286, 'Windshield Wiper Option', 375.00, 0, 2, 7, 0, '2025-01-06 23:12:50', NULL),
(287, 'Auto Locking Rear Differential', 713.00, 0, 3, 7, 0, '2025-01-06 23:13:39', NULL),
(288, 'Electric Power Steering', 1525.00, 0, 3, 7, 0, '2025-01-06 23:13:39', NULL),
(289, '20 HP-Dual Direct Drive SepEx Motor Upgrade', 549.00, 0, 3, 7, 0, '2025-01-06 23:13:39', NULL),
(290, 'Turn Signals and Horn', 449.00, 0, 4, 7, 0, '2025-01-06 23:15:31', NULL),
(291, 'LED Light Package: Approach Green', 209.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(292, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(293, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(294, 'LED Round Lights 4\" (set of 2)', 344.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(295, 'Mirror Set', 111.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(296, 'Heavy Duty Mirror Set Upgrade', 177.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(297, 'Rear Backdraft Window', 495.00, 0, 4, 7, 0, '2025-01-06 23:15:32', NULL),
(298, '110V AC Outlet/ Inverter 4000W', 975.00, 0, 5, 7, 0, '2025-01-06 23:16:54', NULL),
(299, 'Heated Lithium Batteries', 400.00, 0, 5, 7, 0, '2025-01-06 23:16:54', NULL),
(300, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 7, 0, '2025-01-06 23:16:54', NULL),
(301, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 5, 7, 0, '2025-01-06 23:16:54', NULL),
(302, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 7, 0, '2025-01-06 23:18:00', NULL),
(303, 'Roof Mount Bow Rack', 389.00, 0, 6, 7, 0, '2025-01-06 23:18:00', NULL),
(304, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 7, 0, '2025-01-06 23:18:00', NULL),
(305, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 7, 0, '2025-01-06 23:18:00', NULL),
(306, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 7, 0, '2025-01-06 23:19:19', NULL),
(307, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 7, 0, '2025-01-06 23:19:19', NULL),
(308, 'Tire Sealant Package', 150.00, 0, 7, 7, 0, '2025-01-06 23:19:19', NULL),
(309, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 7, 0, '2025-01-06 23:20:46', NULL),
(310, 'Bench Black and Gray 2-Tone Premium Seat Upgrade', 299.00, 0, 8, 7, 0, '2025-01-06 23:20:46', NULL),
(311, 'Heater/Fan System - 12 volt', 650.00, 0, 8, 7, 0, '2025-01-06 23:20:46', NULL),
(312, 'Canvas Weather Enclosure', 1649.00, 0, 8, 7, 0, '2025-01-06 23:20:46', NULL),
(313, 'UTV Cell Phone Mount', 80.00, 0, 9, 7, 0, '2025-01-06 23:21:10', NULL),
(314, 'Camouflage - Realtree™', 795.00, 0, 10, 7, 0, '2025-01-06 23:21:49', NULL),
(315, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 10, 7, 0, '2025-01-06 23:21:49', NULL),
(316, 'Winch: 3500lb with Remote and Winch Plate										', 949.00, 0, 5, 7, 0, '2025-01-06 23:22:46', NULL),
(317, 'Camouflage - Realtree™', 795.00, 0, 10, 8, 0, '2025-01-06 23:28:14', NULL),
(318, 'Roof Top Standard Length', 449.00, 0, 2, 8, 0, '2025-01-06 23:29:44', NULL),
(319, '2-Piece Poly Windshield', 358.00, 0, 2, 8, 0, '2025-01-06 23:29:44', NULL),
(320, 'Poly Vented Premium Windshield', 748.00, 0, 2, 8, 0, '2025-01-06 23:29:44', NULL),
(321, 'Solid Glass Windshield', 489.00, 0, 2, 8, 0, '2025-01-06 23:29:44', NULL),
(322, 'Windshield Wiper Option', 375.00, 0, 2, 8, 0, '2025-01-06 23:29:44', NULL),
(323, 'Auto Locking Rear Differential', 713.00, 0, 3, 8, 0, '2025-01-06 23:31:20', NULL),
(324, 'Electric Power Steering', 1525.00, 0, 3, 8, 0, '2025-01-06 23:31:20', NULL),
(325, 'Turn Signals and Horn', 449.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(326, 'LED Light Package: Approach Green', 209.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(327, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(328, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(329, 'LED Round Lights 4\" (set of 2) - Green, White, Location', 345.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(330, 'Mirror Set', 111.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(331, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(332, 'Rear Backdraft Window', 495.00, 0, 4, 8, 0, '2025-01-06 23:33:10', NULL),
(333, '110V AC Outlet/ Inverter 4000W', 975.00, 0, 5, 8, 0, '2025-01-06 23:34:15', NULL),
(334, 'Heated Lithium Batteries', 400.00, 0, 5, 8, 0, '2025-01-06 23:34:15', NULL),
(335, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3300.00, 0, 5, 8, 0, '2025-01-06 23:34:15', NULL),
(336, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 714.00, 0, 5, 8, 0, '2025-01-06 23:34:15', NULL),
(337, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 8, 0, '2025-01-06 23:36:25', NULL),
(338, 'Roof Mount Bow Rack', 389.00, 0, 6, 8, 0, '2025-01-06 23:36:25', NULL),
(339, '4-Gun Bed Mount Clays Gun Rack', 618.00, 0, 6, 8, 0, '2025-01-06 23:36:25', NULL),
(340, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 8, 0, '2025-01-06 23:36:25', NULL),
(341, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 8, 0, '2025-01-06 23:37:07', NULL),
(342, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 8, 0, '2025-01-06 23:37:07', NULL),
(343, 'Tire Sealant Package', 150.00, 0, 7, 8, 0, '2025-01-06 23:37:07', NULL),
(344, 'Heater/Fan System - 12 volt', 650.00, 0, 8, 8, 0, '2025-01-06 23:38:02', NULL),
(345, 'Canvas Weather Enclosure', 1650.00, 0, 8, 8, 0, '2025-01-06 23:38:02', NULL),
(346, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 8, 0, '2025-01-06 23:38:02', NULL),
(347, 'Bench Black and Gray 2-Tone Premium Seat Upgrade', 299.00, 0, 8, 8, 0, '2025-01-06 23:38:02', NULL),
(348, 'UTV Cell Phone Mount', 80.00, 0, 9, 8, 0, '2025-01-06 23:38:15', NULL),
(349, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 10, 8, 0, '2025-01-06 23:38:50', NULL),
(350, 'Winch: 3500lb with Remote and Winch Plate', 949.00, 0, 10, 8, 0, '2025-01-06 23:38:50', NULL),
(352, 'Roof Top Standard Length', 449.00, 0, 2, 9, 0, '2025-01-06 23:53:34', NULL),
(353, '2-Piece Poly Windshield', 359.00, 0, 2, 9, 0, '2025-01-06 23:53:34', NULL),
(354, 'Poly Vented Premium Windshield', 749.00, 0, 2, 9, 0, '2025-01-06 23:53:34', NULL),
(355, 'Solid Glass Windshield', 489.00, 0, 2, 9, 0, '2025-01-06 23:53:34', NULL),
(356, 'Windshield Wiper Option', 375.00, 0, 2, 9, 0, '2025-01-06 23:53:34', NULL),
(357, 'Auto Locking Rear Differential', 713.00, 0, 3, 9, 0, '2025-01-06 23:54:08', NULL),
(358, 'Electric Power Steering', 1525.00, 0, 3, 9, 0, '2025-01-06 23:54:08', NULL),
(359, 'Turn Signals and Horn', 449.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(360, 'LED Light Package: Approach Green', 209.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(361, 'LED Light Bar 14\" Green and White', 462.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(362, 'LED Light Bar 22\" Green and White', 585.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(363, 'LED Round Lights 4\" (set of 2) - Green, White, Location', 345.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(364, 'Mirror Set', 111.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(365, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(366, 'Rear Backdraft Window', 495.00, 0, 4, 9, 0, '2025-01-06 23:55:51', NULL),
(367, '110V AC Outlet/ Inverter 4000W', 975.00, 0, 5, 9, 0, '2025-01-06 23:56:58', NULL),
(368, 'Heated Lithium Batteries', 400.00, 0, 5, 9, 0, '2025-01-06 23:56:58', NULL),
(369, 'TX-Sized Range Extending 72v Lithium Battery Pack (50% more capacity)', 3299.00, 0, 5, 9, 0, '2025-01-06 23:56:58', NULL),
(370, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 5, 9, 0, '2025-01-06 23:56:58', NULL),
(371, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 9, 0, '2025-01-06 23:57:45', NULL),
(372, 'Roof Mount Bow Rack', 389.00, 0, 6, 9, 0, '2025-01-06 23:57:45', NULL),
(373, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 9, 0, '2025-01-06 23:57:45', NULL),
(374, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 9, 0, '2025-01-06 23:57:45', NULL),
(375, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 9, 0, '2025-01-06 23:58:45', NULL),
(376, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 9, 0, '2025-01-06 23:58:45', NULL),
(377, 'Tire Sealant Package', 150.00, 0, 7, 9, 0, '2025-01-06 23:58:45', NULL),
(378, 'Heater/Fan System - 12 volt', 650.00, 0, 8, 9, 0, '2025-01-06 23:59:44', NULL),
(379, 'Canvas Weather Enclosure', 1649.00, 0, 8, 9, 0, '2025-01-06 23:59:44', NULL),
(380, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 9, 0, '2025-01-06 23:59:44', NULL),
(381, 'Bench Black and Gray 2-Tone Premium Seat Upgrade', 299.00, 0, 8, 9, 0, '2025-01-06 23:59:44', NULL),
(382, 'UTV Cell Phone Mount', 80.00, 0, 9, 9, 0, '2025-01-07 00:00:14', NULL),
(383, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 10, 9, 0, '2025-01-07 00:00:50', NULL),
(384, 'Winch: 3500lb with Remote and Winch Plate										', 949.00, 0, 10, 9, 0, '2025-01-07 00:00:50', NULL),
(385, 'Roof Top Standard Length', 449.00, 0, 2, 10, 0, '2025-01-07 00:06:47', NULL),
(386, '2-Piece Poly Windshield', 359.00, 0, 2, 10, 0, '2025-01-07 00:06:47', NULL),
(387, 'Poly Vented Premium Windshield', 748.00, 0, 2, 10, 0, '2025-01-07 00:06:47', NULL),
(388, 'Solid Glass Windshield', 489.00, 0, 2, 10, 0, '2025-01-07 00:06:47', NULL),
(389, 'Windshield Wiper Option', 375.00, 0, 2, 10, 0, '2025-01-07 00:06:47', NULL),
(390, 'Auto Locking Rear Differential', 713.00, 0, 3, 10, 0, '2025-01-07 00:07:06', NULL),
(391, 'Auto Locking Front Differential', 713.00, 0, 3, 10, 0, '2025-01-07 00:07:06', NULL),
(392, 'Turn Signals and Horn', 449.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(393, 'LED Light Package: Approach Green', 209.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(394, 'LED Light Bar 14\" Green and White', 461.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(395, 'LED Light Bar 22\" Green and White', 584.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(396, 'LED Round Lights 4\" (set of 2) ', 345.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(397, 'Mirror Set', 111.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(398, 'Heavy Duty Mirror Set Upgrade', 179.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(399, 'Rear Backdraft Window', 495.00, 0, 4, 10, 0, '2025-01-07 00:09:09', NULL),
(400, 'Heated Lithium Batteries', 800.00, 0, 5, 10, 0, '2025-01-07 00:09:43', NULL),
(401, 'Bluetooth Stereo with 2 - 4in Marine Grade Speakers', 715.00, 0, 5, 10, 0, '2025-01-07 00:09:43', NULL),
(402, 'Roof Mount Gun Rack 2 Gun', 389.00, 0, 6, 10, 0, '2025-01-07 00:10:47', NULL),
(403, 'Roof Mount Bow Rack', 389.00, 0, 6, 10, 0, '2025-01-07 00:10:47', NULL),
(404, '4-Gun Bed Mount Clays Gun Rack', 619.00, 0, 6, 10, 0, '2025-01-07 00:10:47', NULL),
(405, 'Cam Lock Snubberless Rack (one) Gun/Bow Rack Alternative', 99.00, 0, 6, 10, 0, '2025-01-07 00:10:47', NULL),
(406, 'Front Boot Guard Set', 425.00, 0, 7, 10, 0, '2025-01-07 00:11:40', NULL),
(407, 'Heavy Duty Front Brush Guard', 439.00, 0, 7, 10, 0, '2025-01-07 00:11:40', NULL),
(408, 'Heavy Duty Front Brush Guard and Hood Rack Combo', 799.00, 0, 7, 10, 0, '2025-01-07 00:11:40', NULL),
(409, 'Tire Sealant Package', 150.00, 0, 7, 10, 0, '2025-01-07 00:11:40', NULL),
(410, 'Heater/Fan System - 12 volt', 650.00, 0, 8, 10, 0, '2025-01-07 00:12:45', NULL),
(411, 'Canvas Weather Enclosure', 1649.00, 0, 8, 10, 0, '2025-01-07 00:12:45', NULL),
(412, 'Removable Aluminum Rear Seat Kit With Seat Belts', 2499.00, 0, 8, 10, 0, '2025-01-07 00:12:45', NULL),
(413, 'Bench Black and Gray 2-Tone Premium Seat Upgrade', 299.00, 0, 8, 10, 0, '2025-01-07 00:12:45', NULL),
(414, 'UTV Cell Phone Mount', 80.00, 0, 9, 10, 0, '2025-01-07 00:13:04', NULL),
(415, 'Heavy Duty Steel Dump Bed with Drop Sides - 52.5in x 36.5in x 10in', 1635.00, 0, 10, 10, 0, '2025-01-07 00:13:34', NULL),
(416, 'Winch: 3500lb with Remote and Winch Plate', 949.00, 0, 10, 10, 0, '2025-01-07 00:13:34', NULL),
(418, '#f7f7f7', 0.00, 1, 1, 5, 0, '2025-01-08 17:13:13', NULL),
(420, '#c41f0c', 0.00, 1, 1, 7, 0, '2025-01-08 17:16:37', NULL),
(422, '#c41f0c', 0.00, 1, 1, 8, 0, '2025-01-08 17:19:36', NULL),
(423, '#58402b', 0.00, 1, 1, 9, 0, '2025-01-08 17:45:48', NULL),
(424, '#58402b', 0.00, 1, 1, 10, 0, '2025-01-08 17:49:15', NULL),
(425, '#c41f0c', 0.00, 1, 1, 4, 0, '2025-01-08 17:52:15', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `user`
--

CREATE TABLE `user` (
  `id` int(11) NOT NULL,
  `firstname` varchar(255) NOT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `role` enum('admin','user') DEFAULT 'user'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `user`
--

INSERT INTO `user` (`id`, `firstname`, `lastname`, `email`, `password`, `role`) VALUES
(1, 'Admin', 'Huntve', 'admin@huntve.com', '$2a$10$58iosBAJDl10AYVycV8PDujnH3OoQNyJPwWhaIK/6Fz8KLXP6B.AC', 'admin');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `media`
--
ALTER TABLE `media`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `model`
--
ALTER TABLE `model`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `productUrl` (`productUrl`),
  ADD KEY `bannerImage` (`bannerImage`),
  ADD KEY `thumbnail` (`thumbnail`);

--
-- Indexes for table `modelsection`
--
ALTER TABLE `modelsection`
  ADD PRIMARY KEY (`id`),
  ADD KEY `image` (`image`),
  ADD KEY `model` (`model`);

--
-- Indexes for table `modelvariationattribute`
--
ALTER TABLE `modelvariationattribute`
  ADD PRIMARY KEY (`id`),
  ADD KEY `model` (`model`),
  ADD KEY `image` (`image`);

--
-- Indexes for table `modelvariationtype`
--
ALTER TABLE `modelvariationtype`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `modelvariationvalue`
--
ALTER TABLE `modelvariationvalue`
  ADD PRIMARY KEY (`id`),
  ADD KEY `model` (`model`),
  ADD KEY `variationType` (`variationType`),
  ADD KEY `image` (`image`);

--
-- Indexes for table `user`
--
ALTER TABLE `user`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `email` (`email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `media`
--
ALTER TABLE `media`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `model`
--
ALTER TABLE `model`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `modelsection`
--
ALTER TABLE `modelsection`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `modelvariationattribute`
--
ALTER TABLE `modelvariationattribute`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `modelvariationtype`
--
ALTER TABLE `modelvariationtype`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `modelvariationvalue`
--
ALTER TABLE `modelvariationvalue`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=426;

--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `model`
--
ALTER TABLE `model`
  ADD CONSTRAINT `model_ibfk_1` FOREIGN KEY (`bannerImage`) REFERENCES `media` (`id`),
  ADD CONSTRAINT `model_ibfk_2` FOREIGN KEY (`thumbnail`) REFERENCES `media` (`id`);

--
-- Constraints for table `modelsection`
--
ALTER TABLE `modelsection`
  ADD CONSTRAINT `modelsection_ibfk_1` FOREIGN KEY (`image`) REFERENCES `media` (`id`),
  ADD CONSTRAINT `modelsection_ibfk_2` FOREIGN KEY (`model`) REFERENCES `model` (`id`);

--
-- Constraints for table `modelvariationattribute`
--
ALTER TABLE `modelvariationattribute`
  ADD CONSTRAINT `modelvariationattribute_ibfk_1` FOREIGN KEY (`model`) REFERENCES `model` (`id`),
  ADD CONSTRAINT `modelvariationattribute_ibfk_2` FOREIGN KEY (`image`) REFERENCES `media` (`id`);

--
-- Constraints for table `modelvariationvalue`
--
ALTER TABLE `modelvariationvalue`
  ADD CONSTRAINT `modelvariationvalue_ibfk_1` FOREIGN KEY (`model`) REFERENCES `model` (`id`),
  ADD CONSTRAINT `modelvariationvalue_ibfk_2` FOREIGN KEY (`variationType`) REFERENCES `modelvariationtype` (`id`),
  ADD CONSTRAINT `modelvariationvalue_ibfk_3` FOREIGN KEY (`image`) REFERENCES `media` (`id`);
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
