1
0
370774330@qq.com 5 лет назад
Родитель
Сommit
620e82f811
1 измененных файлов с 19 добавлено и 0 удалено
  1. 19 0
      web/src/main/resources/sql/init.sql

+ 19 - 0
web/src/main/resources/sql/init.sql

@@ -1,3 +1,22 @@
+create table if not exists devcloud.api_test
+(
+    test_id      int auto_increment
+        primary key,
+    test_name    varchar(255)  not null,
+    project_id   int           not null,
+    create_time  datetime      not null,
+    username     varchar(255)  not null,
+    url          varchar(255)  not null,
+    params       json          null,
+    qps          int           not null,
+    state        varchar(255)  not null,
+    execute_time datetime      null,
+    success      int default 0 not null,
+    failure      int default 0 not null,
+    time_list    text          not null,
+    method       varchar(255)  not null
+);
+
 create table if not exists devcloud.project
 (
     id             int          not null