mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 13:49:13 +00:00
8 lines
139 B
Python
8 lines
139 B
Python
import frappe
|
|
|
|
def execute():
|
|
frappe.db.sql("""
|
|
update tabCustomer
|
|
set represents_company = NULL
|
|
where represents_company = ''
|
|
""") |