feat(Structure & IDE Helper)

This commit is contained in:
2025-10-24 14:09:54 +02:00
parent bccb1866c6
commit ec1e45d1ec
32 changed files with 33930 additions and 122 deletions

View File

@@ -16,6 +16,7 @@ return new class extends Migration
$table->string('identifier')->unique();
$table->string('name');
$table->string('description')->nullable();
$table->decimal('price', 10)->default(0);
$table->boolean('is_active')->default(true);
$table->timestamps();
$table->softDeletes();