salix/db/changes/233801/00-supplier.sql

10 lines
422 B
MySQL
Raw Normal View History

2023-09-14 08:04:34 +00:00
ALTER TABLE `vn`.`company` MODIFY COLUMN `supplierAccountFk` mediumint(8) unsigned DEFAULT NULL NULL COMMENT 'Cuenta por defecto para ingresos desde este pais';
2023-09-13 09:02:47 +00:00
2023-09-14 08:04:34 +00:00
CREATE TABLE `vn`.`supplierAccountI18n` (
supplierAccountFk int(10) unsigned NOT NULL,
countryFk mediumint(8) unsigned NOT NULL,
FOREIGN KEY (supplierAccountFk) REFERENCES supplierAccount(id),
FOREIGN KEY (countryFk) REFERENCES country(id)
);
2023-09-13 09:02:47 +00:00