id(); $table->string('name'); $table->string('lastname'); $table->string('email'); $table->string('phone'); $table->string('section'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profiles'); } }