ulid('id')->primary(); $table->string('name')->nullable(); $table->string('bank_name')->nullable(); $table->string('holder_name')->nullable(); $table->string('account_number')->nullable(); $table->string('logo')->nullable(); $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('accounts'); } };