update fixturs for table clientContact

This commit is contained in:
Bernat 2018-06-25 12:27:27 +02:00
parent 656f26abff
commit f0cb20736b
1 changed files with 9 additions and 1 deletions

View File

@ -713,4 +713,12 @@ INSERT INTO `hedera`.`orderRow`(`id`, `orderFk`, `itemFk`, `warehouseFk`, `shipm
VALUES
( 1, 1, 1, NULL , NULL , 9, 1.5 , 1, CURDATE(), 1),
( 2, 2, 2, 1 , NULL , 5, 1.23, 2, CURDATE(), 2),
( 3, 3, 3, 2 , CURDATE(), 3, 0.50, 3, CURDATE(), 3);
( 3, 3, 3, 2 , CURDATE(), 3, 0.50, 3, CURDATE(), 3);
INSERT INTO `vn`.`clientContact`(`id`, `clientFk`, `name`, `phone`)
VALUES
( 1, 101, 'contact 1', 666777888),
( 2, 101, 'contact 2', 111222333),
( 3, 101, 'contact 3', 222333444),
( 4, 102, 'contact 1', 876543219);