6 lines
215 B
Python
6 lines
215 B
Python
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
webnotes.conn.sql("delete from `tabCustomize Form Field`")
|
|
webnotes.conn.sql("""delete from `tabSingles`
|
|
where doctype='Customize Form'""") |