16 lines
223 B
Python
16 lines
223 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
fields = [
|
|
"courses",
|
|
"batches",
|
|
"certified_participants",
|
|
"jobs",
|
|
"statistics",
|
|
"notifications",
|
|
]
|
|
|
|
for field in fields:
|
|
frappe.db.set_single_value("LMS Settings", field, 1)
|