CREATE TABLE `marks_gutniks` (
	`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
	`vards` VARCHAR(100) NOT NULL COLLATE 'utf8mb4_unicode_ci',
	`uzvards` VARCHAR(100) NOT NULL COLLATE 'utf8mb4_unicode_ci',
	`datums` DATE NOT NULL,
	`vecums` TINYINT(3) UNSIGNED NOT NULL,
	`transports` ENUM('volvo','bmw','audi','lamborghini','porsche') NOT NULL COLLATE 'utf8mb4_unicode_ci',
	`velo` TINYINT(1) NOT NULL DEFAULT '0',
	`auto` TINYINT(1) NOT NULL DEFAULT '0',
	`laiva` TINYINT(1) NOT NULL DEFAULT '0',
	`created_at` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
	`updated_at` TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
	PRIMARY KEY (`id`) USING BTREE,
	INDEX `idx_transports` (`transports`) USING BTREE,
	INDEX `idx_vecums` (`vecums`) USING BTREE
)
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;
