fixes #4984 Añadir autoincrement a 2 tablas #1239

Merged
alexandre merged 3 commits from 4984-autoincrement-vnReport-vnPrinter into dev 2023-01-10 10:43:58 +00:00
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `vn`.`report` MODIFY COLUMN id tinyint(3) unsigned NOT NULL AUTO_INCREMENT;
ALTER TABLE `vn`.`printer` MODIFY COLUMN id tinyint(3) unsigned NOT NULL AUTO_INCREMENT;
SET FOREIGN_KEY_CHECKS = 1;