bigIncrements('id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->text('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contact'); } }