5 lines
131 B
Python
5 lines
131 B
Python
|
import frappe
|
||
|
|
||
|
def execute():
|
||
|
frappe.db.sql("""UPDATE `tabDynamic Link` SET link_doctype = 'Lead' WHERE link_doctype = 'Load'""")
|