CREATE TABLE `nds_car_brand` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` int DEFAULT NULL, `updated_at` int DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `car_brand_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;