seitime-frappe/frappe/patches/v13_0/migrate_translation_column_data.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

8 lines
198 B
Python

import frappe
def execute():
frappe.reload_doctype("Translation")
frappe.db.sql(
"UPDATE `tabTranslation` SET `translated_text`=`target_name`, `source_text`=`source_name`, `contributed`=0"
)