2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-03-27 14:01:38 +00:00
|
|
|
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()
|