Files
enlight-lms/lms/patches/v0_0/user_singles_issue.py
2023-01-03 22:04:59 +05:30

8 lines
204 B
Python

import frappe
def execute():
rows = frappe.db.sql("select field from `tabSingles` where doctype='User'", as_dict = True)
if len(rows):
frappe.db.sql("delete from `tabSingles` where doctype='User'")