started fresh install and added country_info

This commit is contained in:
Rushabh Mehta
2013-01-17 18:22:22 +05:30
parent 6f9915cd17
commit db7139a649
23 changed files with 476 additions and 1702 deletions

View File

@@ -0,0 +1,12 @@
import webnotes
def execute():
webnotes.reload_doc("core", "doctype", "patch_log")
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")