From 9ec6a37f530f1537c458e530d6b9ade361e4866e Mon Sep 17 00:00:00 2001 From: Hankin Date: Tue, 25 Mar 2025 17:44:04 +0800 Subject: [PATCH] add question category --- 1742891265_create_question_category.up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/1742891265_create_question_category.up.sql b/1742891265_create_question_category.up.sql index c4c425c..d0909fd 100644 --- a/1742891265_create_question_category.up.sql +++ b/1742891265_create_question_category.up.sql @@ -1,6 +1,7 @@ CREATE TABLE `ufutx_question_category` ( `id` INT NOT NULL AUTO_INCREMENT , `name` VARCHAR(100) NOT NULL COMMENT "名称", + `icon` VARCHAR(191) NOT NULL COMMENT "图标", `created_at` TIMESTAMP NULL DEFAULT NULL , `updated_at` TIMESTAMP NULL DEFAULT NULL , PRIMARY KEY (`id`)