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