|
|
|
@ -15,7 +15,7 @@ return new class extends Migration |
|
|
|
$table->id(); |
|
|
|
$table->unsignedBigInteger('order_id')->index()->comment('订单ID'); |
|
|
|
$table->tinyInteger('state')->comment('订单状态'); |
|
|
|
$table->timestamp('receive_time')->comment('接收通知的时间'); |
|
|
|
$table->timestamp('receive_time')->nullable()->comment('接收通知的时间'); |
|
|
|
$table->text('receive_body')->comment('接收通知的内容'); |
|
|
|
$table->timestamp('push_time')->nullable()->comment('推给客户的时间'); |
|
|
|
$table->text('push_body')->nullable()->comment('推给客户的内容'); |
|
|
|
|