id(); $table->foreignId('user_id')->index(); $table->string('name'); $table->boolean('personal_company'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };