mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 09:05:00 +00:00
7 lines
259 B
Python
7 lines
259 B
Python
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
from webnotes.model import delete_doc
|
|
webnotes.conn.sql("update `tabDocType` set module = 'Utilities' where name in ('Question', 'Answer')")
|
|
delete_doc('Module Def', 'Knowledge Base')
|