id(); $table->foreignId('user_id')->nullable()->constrained()->cascadeOnDelete(); $table->string('name', 50); $table->string('phone_number', 20)->nullable()->unique(); $table->enum('gender', Gender::values())->comment(Gender::comment()); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->nullable()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };