Browse Source

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

xuxiaopang 2 năm trước cách đây
mục cha
commit
102316acc9
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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;