阶段更新

This commit is contained in:
2023-09-05 10:49:03 +08:00
parent 55e1cf6b7c
commit 3f58973c30
11 changed files with 92 additions and 23 deletions

View File

@@ -0,0 +1,39 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateWoUnicomWebsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('wo_unicom_webs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('orderId')->nullable()->comment('订单号');
$table->string('payFloodId')->nullable()->comment('交易流水号');
$table->string('payResult')->nullable()->comment('支付结果');
$table->string('payBalance')->nullable()->comment('支付金额');
$table->string('paymentBalanceDetail')->nullable()->comment('金额明细');
$table->string('respTime')->nullable()->comment('支付时间');
$table->json('source')->nullable();
$table->json('outsource')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('wo_unicom_webs');
}
}