feat: create isInformal #2405

Merged
jgallego merged 1 commits from 7109-entry-isInformal into dev 2024-05-06 07:41:28 +00:00
3 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
ALTER TABLE vn.entryType ADD isInformal TINYINT DEFAULT 0 NOT NULL;

View File

@ -0,0 +1,3 @@
UPDATE vn.entryType
SET description='Interna', code='internal'
WHERE code='supplies'

View File

@ -0,0 +1,3 @@
UPDATE vn.entryType
SET isInformal = TRUE
WHERE code IN ('inventory', 'life', 'regularization', 'internal')