seitime-frappe/frappe/patches/v14_0/remove_is_first_startup.py
2022-05-04 13:35:57 +05:30

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()