14 lines
247 B
Python
14 lines
247 B
Python
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: MIT. See LICENSE
|
|
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
"""Enable all the existing Client script"""
|
|
|
|
frappe.db.sql(
|
|
"""
|
|
UPDATE `tabClient Script` SET enabled=1
|
|
"""
|
|
)
|