master
parent
a2216d0410
commit
03e0d58dc3
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class UpdateOrderAgreementsAddHtml extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('order_agreements', function (Blueprint $table) {
|
||||||
|
$table->mediumText('html')->nullable()->comment('协议内容html');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1 +0,0 @@
|
|||||||
7e01ae195d6d866fb688b83a9c7081b0
|
|
||||||
@ -1 +0,0 @@
|
|||||||
520c7bfbde672e65a89206776e3b9be4
|
|
||||||
@ -1 +0,0 @@
|
|||||||
9a929b5b5e0990e40920a6e57b6e40a5
|
|
||||||
Loading…
Reference in new issue