id(); $table->string('email', 255); $table->string('message', 1000); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }