10 lines
346 B
Python
10 lines
346 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def execute():
|
|
if frappe.db.exists('Module Def', 'Fleet Management'):
|
|
frappe.db.sql("""delete from `tabModule Def`
|
|
where module_name = 'Fleet Management'""") |