id(); $table->string('firstname', 75)->nullable(); $table->string('lastname', 75)->nullable(); $table->string('phone', 75)->nullable(); $table->string('address', 150)->nullable(); $table->string('zip', 6)->nullable(); $table->string('city', 75)->nullable(); $table->string('country', 3)->nullable(); $table->string('company', 75)->nullable(); $table->string('email', 75)->nullable(); $table->text('notes')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }