Files
ikea/database/migrations/2022_07_15_192421_create_menus_table.php
2022-07-16 04:29:57 +07:00

47 lines
1.2 KiB
PHP

<?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::create('menus', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('parent_id')
->nullable()
->default(null);
$table->string('name');
$table->string('icon')
->default('circle');
$table->string('route_or_url')->default('#');
$table->unsignedTinyInteger('position');
$table->boolean('enable')->default(true);
$table->boolean('deleteable')->default(true);
$table->json('actives')->default('[]');
$table->timestamps();
$table->foreign('parent_id')
->references('id')
->on('menus');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('menus');
}
};