Skip to content

Commit 98a69ae

Browse files
committed
fix(database): text 类型
1 parent 54f3ebc commit 98a69ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laravel/database/migrations/2019_03_26_180250_create_api_excel_logs_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ public function up()
1717
$table->increments('id');
1818
$table->unsignedInteger('api_excel_id')->default('0')->comment('关联 api_excel 表的 id');
1919
$table->unsignedInteger('sort_index')->default('0')->comment('本次查询的排序');
20-
$table->string('param')->default('')->comment('请求参数');
21-
$table->text('result');
20+
$table->text('param')->default('')->comment('请求参数');
21+
$table->text('result')->comment('响应结果');
2222
$table->timestamp('created_at')->nullable();
2323
$table->index('api_excel_id', 'index_api_excel_id');
2424
$table->index('sort_index', 'index_sort_index');

0 commit comments

Comments
 (0)