From 616232460e709d2148c060ff246def908ffc3261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E5=BB=BA=E7=82=8A?= <924182103@qq.com> Date: Thu, 8 Aug 2024 16:06:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=B2=9C=E8=8A=B12.0-=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=B5=8B=E8=AF=95bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2024_08_02_175020_create_business_after_sale_orders.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database/migrations/2024_08_02_175020_create_business_after_sale_orders.php b/database/migrations/2024_08_02_175020_create_business_after_sale_orders.php index fe2ef2d..78a1072 100644 --- a/database/migrations/2024_08_02_175020_create_business_after_sale_orders.php +++ b/database/migrations/2024_08_02_175020_create_business_after_sale_orders.php @@ -24,9 +24,9 @@ class CreateBusinessAfterSaleOrders extends Migration $table->bigInteger('refund_shipping_amount')->default(0)->comment('用户申请退运费金额'); $table->string('description')->nullable()->comment('描述'); $table->string('reason')->nullable()->comment('原因'); - $table->json('sub_extensions')->nullable()->comment('子单信息'); - $table->json('image_list')->nullable()->comment('图片列表'); - $table->json('return_goods_extension')->nullable()->comment('退款物流信息'); + $table->text('sub_extensions')->nullable()->comment('子单信息'); + $table->text('image_list')->nullable()->comment('图片列表'); + $table->text('return_goods_extension')->nullable()->comment('退款物流信息'); $table->integer('apply_type')->default(0)->comment('售后单类型 0-仅退款 1-退货退款'); $table->dateTime('after_sale_created_at')->nullable()->comment('售后单三方创建时间'); $table->dateTime('after_sale_updated_at')->nullable()->comment('售后单三方更新时间');