13 lines
498 B
Python
13 lines
498 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
webnotes.conn.sql("DELETE FROM `tabDocField` WHERE options='DocFormat'")
|
|
webnotes.conn.sql("DELETE FROM `tabDocField` WHERE parent='DocFormat'")
|
|
webnotes.conn.sql("DELETE FROM `tabDocType` WHERE name='DocFormat'")
|
|
webnotes.conn.commit()
|
|
webnotes.conn.sql("DROP TABLE `tabDocFormat`")
|
|
webnotes.conn.begin()
|