8 lines
204 B
Python
8 lines
204 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
singles = frappe.qb.Table("tabSingles")
|
|
frappe.qb.from_(singles).delete().where(
|
|
(singles.doctype == "System Settings") & (singles.field == "is_first_startup")
|
|
).run()
|