Commit a6cd5103 authored by hangjun83's avatar hangjun83

财务开票模块更新

parent d19d7097
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFinanceInvoicesRecordUpdateApiResponseTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('finance_invoices_record', function (Blueprint $table) {
$table->text('api_response')->nullable()->comment('api返回接口');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::create('finance_invoices_record', function (Blueprint $table) {
$table->dropColumn('api_response');
});
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment