16 lines
461 B
Python
16 lines
461 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
import webnotes
|
|
|
|
def execute():
|
|
webnotes.reload_doc("core", "doctype", "patch_log")
|
|
if webnotes.conn.table_exists("__PatchLog"):
|
|
for d in webnotes.conn.sql("""select patch from __PatchLog"""):
|
|
webnotes.doc({
|
|
"doctype": "Patch Log",
|
|
"patch": d[0]
|
|
}).insert()
|
|
|
|
webnotes.conn.commit()
|
|
webnotes.conn.sql("drop table __PatchLog") |