id(); $table->uuid()->unique(); $table->foreignIdFor(\App\Models\Person\Person::class); $table->unsignedTinyInteger('active')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };