阶段更新
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user