increments('id'); $table->string('primerNombre', 45)->nullable(); $table->string('segundoNombre', 45)->nullable(); $table->string('primerApellido', 45)->nullable(); $table->string('segundoApellido', 45)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('visitantes'); } }