<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateShopGoodsCategoryTable extends Migration
{
public function up()
{
Schema::create('my_shop_goods_category', function (Blueprint $table) {
$table->id();
$table->integer('pid');
$table->string('name');
$table->string('description')->nullable();
$table->timestamps();
$table->engine = 'InnoDB';
});
}
public function down()
{
Schema::dropIfExists('my_shop_goods_category');
}
}