add question category

This commit is contained in:
Hankin 2025-03-25 16:59:20 +08:00
parent d3e186f446
commit b31bef7026
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,7 @@
CREATE TABLE `ufutx_question_category` (
`id` INT NOT NULL AUTO_INCREMENT ,
`name` VARCHAR(100) NOT NULL COMMENT "名称",
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '问题分类';

View File

@ -0,0 +1,2 @@
ALTER TABLE `ufutx_question`
ADD COLUMN `category_id` INT default NULL COMMENT "分类id" after `id`