Domain Create Modal anpassen Fehler auf Null

main
boban 2025-10-18 23:37:58 +02:00
parent a78767809d
commit f1c4fbf9a1
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ return new class extends Migration
$table->enum('type', ['single','group'])->default('single'); $table->enum('type', ['single','group'])->default('single');
$table->string('group_name', 80)->nullable(); $table->string('group_name', 80)->nullable();
$table->boolean('is_active')->default(true)->index(); $table->boolean('is_active')->default(true)->index();
$table->boolean('is_system')->default(false)->after('is_active')->index(); $table->boolean('is_system')->default(false)->index();
$table->text('notes')->nullable(); $table->text('notes')->nullable();
$table->timestamps(); $table->timestamps();