increments('id'); $table->string('name', 300)->nullable(); $table->string('email', 300)->nullable(); $table->string('Phone', 20)->nullable(); $table->string('subject', 300)->nullable(); $table->string('message', 300)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contactuses'); } }