erp/database/migrations/2022_07_28_095523_create_menus_table.php

41 lines
1.0 KiB
PHP
Raw Permalink Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMenusTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2023-04-17 18:56:59 +08:00
if (Schema::hasTable('menus')) {
return;
}
2022-08-09 16:56:52 +08:00
Schema::defaultStringLength(191);
Schema::create('menus', function (Blueprint $table) {
$table->bigIncrements('id');
2022-08-18 11:22:27 +08:00
$table->string('code', 32)->unique()->comment('菜单编码');
$table->string('name', 32)->comment('菜单名称');
$table->unsignedBigInteger('parent_id')->default(0);
$table->unsignedInteger('seq')->default(0)->comment('排序序号');
2023-04-20 20:43:49 +08:00
$table->tinyInteger('show')->default(1);
// 索引
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('menus');
}
}