move receiving database update to common database update script

This commit is contained in:
FrancescoUK
2017-06-24 13:01:54 +01:00
parent 78877094fb
commit d59e713f1f
2 changed files with 3 additions and 1 deletions

View File

@@ -240,3 +240,6 @@ INSERT INTO `ospos_permissions` (`permission_id`, `module_id`) VALUES
INSERT INTO `ospos_grants` (`permission_id`, `person_id`) VALUES
('migrate', 1);
-- update to receivings
UPDATE ospos_items SET receiving_quantity = 1 WHERE receiving_quantity = 0;

View File

@@ -1 +0,0 @@
UPDATE ospos_items SET receiving_quantity = 1 WHERE receiving_quantity = 0;