fix(测试跟踪): 修改缺陷评论和用例附件表字符集

This commit is contained in:
jianxing 2023-06-21 14:27:41 +08:00 committed by fit2-zhao
parent 027838c9e5
commit 75dc26c92e
2 changed files with 3 additions and 2 deletions

View File

@ -76,7 +76,7 @@ CREATE TABLE `issue_comment`
`status` varchar(80) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8;
DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
CREATE TABLE IF NOT EXISTS `api_execution_queue`
(

View File

@ -4,4 +4,5 @@ create table if not exists test_case_file
file_id varchar(64) null,
constraint test_case_file_unique_key
unique (case_id, file_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;