id(); $table->string('uid')->unique(); $table->string('iid')->unique(); $table->string('name_first'); $table->string('name_last'); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->string('zip')->nullable(); $table->string('subject')->nullable(); $table->text('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contact_message'); } }