From 657bcd83da3ec97e4549569871f44ec7f5e7fb42 Mon Sep 17 00:00:00 2001 From: denghy Date: Tue, 29 Jan 2019 18:08:07 +0800 Subject: [PATCH] create table --- .../2018_12_31_170946_create_virtual_order_cards_tables.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database/migrations/2018_12_31_170946_create_virtual_order_cards_tables.php b/database/migrations/2018_12_31_170946_create_virtual_order_cards_tables.php index 2682056f..b722ba5b 100644 --- a/database/migrations/2018_12_31_170946_create_virtual_order_cards_tables.php +++ b/database/migrations/2018_12_31_170946_create_virtual_order_cards_tables.php @@ -31,10 +31,11 @@ class CreateVirtualOrderCardsTables extends Migration $table->integer('package_id')->unsigned()->default(0)->comment('套餐ID'); $table->integer('counts')->unsigned()->default(0)->comment('数量'); $table->timestamps(); + $table->softDeletes(); $table->unique(['sim', 'order_id', 'deleted_at']); - $table->comment("RD续费及增值包订单关联卡"); + $table->comment("VD卡关联套餐订单"); $table->partition('type', 'list');