uuid('id')->primary(); $table->string('code'); $table->string('name'); $table->string('address')->nullable(); $table->string('phone')->nullable(); $table->timestamps(); $table->softDeletes(); $table->uuid('created_by')->nullable(); $table->uuid('updated_by')->nullable(); $table->uuid('deleted_by')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };