ulid('id')->primary(); $table->string('name'); $table->string('code'); $table->decimal('start_point', 20, 2); $table->decimal('last_point', 20, 2); $table->timestamps(); $table->softDeletes(); $table->ulid('created_by')->nullable(); $table->ulid('updated_by')->nullable(); $table->ulid('deleted_by')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };