mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-05 06:28:29 +00:00
9 lines
176 B
Python
9 lines
176 B
Python
def execute():
|
|
import webnotes
|
|
webnotes.conn.sql("""
|
|
DELETE FROM tabDocField
|
|
WHERE parent = 'Email Digest'
|
|
AND label = 'Add Recipients'
|
|
AND fieldtype = 'Button'""")
|
|
|