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