rabin 1 ngày trước cách đây
mục cha
commit
44494df0ce
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 6 6
      table/api_log.php

+ 6 - 6
table/api_log.php

@@ -25,7 +25,7 @@ return [
 
         'url' => [
             'name'      => '请求url',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
 
         'method' => [
@@ -35,27 +35,27 @@ return [
 
         'body' => [
             'name'      => '请求体',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
 
         'header' => [
             'name'      => '请求头',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
 
         'response_body' => [
             'name'      => '响应体',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
 
         'response_header' => [
             'name'      => '响应头',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
 
         'data' => [
             'name'      => '返回数据',
-            'type'      => 'varchar(1000)',
+            'type'      => 'text',
         ],
     ],
 ];