id(); $table->foreignId('user_id')->references('id')->on('users'); $table->string('first_name'); $table->string('last_name'); $table->string('email'); $table->text('description'); $table->string('address'); $table->string('cover'); $table->string('skills'); $table->string('company'); $table->float('completed'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_infos'); } };