liyinglin 3 years ago
parent cfd4b6df45
commit 59ee7ca2cf

@ -1,33 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('visits', function (Blueprint $table) {
$table->json('person_no')->nullable()->comment('人牌');
$table->json('car_no')->nullable()->comment('车牌');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('visits', function (Blueprint $table) {
//
});
}
};
Loading…
Cancel
Save