diff --git a/migration/360lts-release/oracle/774_FR3039241_RussianRegionsFix.sql b/migration/360lts-release/oracle/774_FR3039241_RussianRegionsFix.sql new file mode 100644 index 0000000000..f682461eb7 --- /dev/null +++ b/migration/360lts-release/oracle/774_FR3039241_RussianRegionsFix.sql @@ -0,0 +1,9 @@ +-- 18-dic-2010 12:46:11 COT +-- Russian Country regions +UPDATE C_Country SET RegionName='Federal Subject',Updated=TO_DATE('2010-12-18 12:46:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=286 +; + +-- 18-dic-2010 12:46:30 COT +UPDATE C_Country_Trl SET IsTranslated='Y',RegionName='Sujeto Federal',Updated=TO_DATE('2010-12-18 12:46:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=286 AND AD_Language LIKE 'es_%' +; + diff --git a/migration/360lts-release/postgresql/774_FR3039241_RussianRegionsFix.sql b/migration/360lts-release/postgresql/774_FR3039241_RussianRegionsFix.sql new file mode 100644 index 0000000000..6d9c656928 --- /dev/null +++ b/migration/360lts-release/postgresql/774_FR3039241_RussianRegionsFix.sql @@ -0,0 +1,9 @@ +-- 18-dic-2010 12:46:11 COT +-- Russian Country regions +UPDATE C_Country SET RegionName='Federal Subject',Updated=TO_TIMESTAMP('2010-12-18 12:46:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=286 +; + +-- 18-dic-2010 12:46:30 COT +UPDATE C_Country_Trl SET IsTranslated='Y',RegionName='Sujeto Federal',Updated=TO_TIMESTAMP('2010-12-18 12:46:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_Country_ID=286 AND AD_Language LIKE 'es_%' +; +