鲜花2.0-接口测试bug修复

This commit is contained in:
杨建炊 2024-08-08 16:10:38 +08:00
parent 616232460e
commit 32edad5d4b

View File

@ -31,10 +31,10 @@ class CreateBusinessAfterSaleOrders extends Migration
$table->dateTime('after_sale_created_at')->nullable()->comment('售后单三方创建时间'); $table->dateTime('after_sale_created_at')->nullable()->comment('售后单三方创建时间');
$table->dateTime('after_sale_updated_at')->nullable()->comment('售后单三方更新时间'); $table->dateTime('after_sale_updated_at')->nullable()->comment('售后单三方更新时间');
$table->unique(["shop_id",'order_sn']); $table->unique(["shop_id",'order_sn'],"unique_shop_id_order_sn");
$table->index('order_sn'); $table->index('order_sn');
$table->index('after_sales_biz_sn'); $table->index('after_sales_biz_sn');
$table->index(['after_sales_biz_sn',"apply_type"]); $table->index(['after_sales_biz_sn',"apply_type"],"index_biz_sn_apply_type");
$table->index('after_sale_created_at'); $table->index('after_sale_created_at');
$table->timestamps(); $table->timestamps();
}); });