ulid('id')->primary(); $table->ulid('customer_id'); $table->string('description', 1000)->nullable(); $table->decimal('point', 20, 2)->default(0); $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('customer_points'); } };