diff --git a/migration/353a-trunk/oracle/566_FR1756793_RMA.sql b/migration/353a-trunk/oracle/566_FR1756793_RMA.sql index 3c9d0761c2..0951c5444f 100644 --- a/migration/353a-trunk/oracle/566_FR1756793_RMA.sql +++ b/migration/353a-trunk/oracle/566_FR1756793_RMA.sql @@ -3552,3 +3552,7 @@ UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_DATE('2009-09-11 01:19:45','YYYY-MM UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_DATE('2009-09-11 01:20:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53276 ; +-- update wrongly created document types on other tenants +update c_doctype set issotrx = 'N' where docbasetype = 'MMS' and name = 'MM Vendor Return'; + +update c_doctype set issotrx = 'Y' where docbasetype = 'MMR' and name = 'MM Returns'; diff --git a/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql b/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql index 2c1cf0280a..ab1f25f5e0 100644 --- a/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql +++ b/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql @@ -3552,3 +3552,7 @@ UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_TIMESTAMP('2009-09-11 01:19:45','YY UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_TIMESTAMP('2009-09-11 01:20:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53276 ; +-- update wrongly created document types on other tenants +update c_doctype set issotrx = 'N' where docbasetype = 'MMS' and name = 'MM Vendor Return'; + +update c_doctype set issotrx = 'Y' where docbasetype = 'MMR' and name = 'MM Returns';