6 lines
158 B
Python
6 lines
158 B
Python
|
import frappe
|
||
|
|
||
|
def execute():
|
||
|
frappe.db.sql("""update tabContact, tabUser set tabContact.user = tabUser.name
|
||
|
where tabContact.email_id = tabUser.email""")
|