Código sql:
Ver originalALTER TABLE `puntosdeventa`.`t_puntos_venta`
(
MODIFY COLUMN `NRO_ESTACION` INTEGER UNSIGNED ZEROFILL
NOT NULL DEFAULT NULL AUTO_INCREMENT
)
ENGINE = InnoDB;
Creo que el error viene de la cincongruencia
... NOT NULL DEFAULT NULL ....
Código sql:
Ver originalALTER TABLE `puntosdeventa`.`t_puntos_venta`
(
MODIFY COLUMN `NRO_ESTACION` INTEGER UNSIGNED ZEROFILL
NOT NULL DEFAULT AUTO_INCREMENT
)
ENGINE = InnoDB;
Quim