Add (categories)

This commit is contained in:
2023-09-21 23:09:15 +08:00
parent c5410fd713
commit d8ed8bdb1d
32 changed files with 3052 additions and 153 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('categories', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('slug')->nullable();
$table->boolean('enabled')->default(true);
$table->timestamps();
$table->nestedSet();
$table->index(['name', 'slug']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('categories');
}
};