From a22b63198cf9819d496e2c937c7136e209ea0301 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Thu, 24 Nov 2022 09:20:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=A8=20Android=20?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E6=97=A0=E6=B3=95=E4=B8=8B=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/2021_12_26_111435_create_tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2021_12_26_111435_create_tables.php b/database/migrations/2021_12_26_111435_create_tables.php index f2869189..db7df9bb 100644 --- a/database/migrations/2021_12_26_111435_create_tables.php +++ b/database/migrations/2021_12_26_111435_create_tables.php @@ -206,7 +206,7 @@ class CreateTables extends Migration $table->string('currency_code')->comment('当前货币'); $table->string('currency_value')->comment('当前汇率'); $table->string('ip')->comment('下单时 IP'); - $table->string('user_agent')->comment('下单时浏览器信息'); + $table->text('user_agent')->comment('下单时浏览器信息'); $table->string('status')->comment('订单状态'); $table->string('shipping_method_code')->comment('配送方式编码'); $table->string('shipping_method_name')->comment('配送方式名称');