increments('id'); $table->string('name'); $table->string('logo')->nullable(); $table->string('unique_hash')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };