update fixtures add other bank

This commit is contained in:
Bernat 2018-11-19 10:34:45 +01:00
parent 89cea7373f
commit 10934dcf38
1 changed files with 3 additions and 2 deletions

View File

@ -66,9 +66,10 @@ INSERT INTO `vn`.`accountingType`(`id`, `description`)
(4, 'Stolen Money'), (4, 'Stolen Money'),
(5, 'Miscellaneous'); (5, 'Miscellaneous');
INSERT INTO `vn`.`bank`(`id`, `bank`, `account`, `cash`, `entityFk`, `isActive`) INSERT INTO `vn`.`bank`(`id`, `bank`, `account`, `cash`, `entityFk`, `isActive`, `currencyFk`)
VALUES VALUES
(1, 'Pay on receipt', '0000000000', 4, 0, 1); (1, 'Pay on receipt', '0000000000', 4, 0, 1, 1),
(2, 'Cash', '1111111111', 1, 0, 1, 1);
INSERT INTO `vn`.`agency`(`id`, `name`, `warehouseFk`, `isVolumetric`, `bankFk`, `warehouseAliasFk`) INSERT INTO `vn`.`agency`(`id`, `name`, `warehouseFk`, `isVolumetric`, `bankFk`, `warehouseAliasFk`)
VALUES VALUES