id(); $table->timestamps(); $table->string('name_first', 255); $table->string('name_last', 255); $table->string('email', 255); $table->integer('phone'); //$table->unique('email'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contact'); } }