7 lines
130 B
Python
7 lines
130 B
Python
|
import webnotes
|
||
|
def execute():
|
||
|
webnotes.conn.sql("""\
|
||
|
DELETE FROM `tabProperty Setter`
|
||
|
WHERE property='previous_field'
|
||
|
""")
|