소스 검색

fix:修改了后端的建表语句,适配功能测试的接口需要

xuxiaopang 2 년 전
부모
커밋
102316acc9
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      web/src/main/resources/sql/table_init.sql

+ 1 - 0
web/src/main/resources/sql/table_init.sql

@@ -3,6 +3,7 @@ create table if not exists devcloud.func_test_case
     id         int auto_increment
         primary key,
     project_id int                  not null,
+    task_id    int                  not null,
     title      varchar(63)          null,
     pass       tinyint(1) default 0 not null
 ) CHARSET=utf8;