id(); $table->string('firstname'); $table->string('lastname'); $table->string('middlename')->nullable(); $table->string('company'); $table->foreignId('type_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } };