ulid('id')->primary(); $table->string('name')->nullable(); $table->string('description')->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('locations'); } };