Skip to content

Commit

Permalink
fix(测试跟踪): 修改缺陷评论和用例附件表字符集
Browse files Browse the repository at this point in the history
  • Loading branch information
jianxing authored and fit2-zhao committed Jun 25, 2023
1 parent 027838c commit 75dc26c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -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`
(
Expand Down
Expand Up @@ -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;

0 comments on commit 75dc26c

Please sign in to comment.