From 9ca7e5255b23db5e9ebeab00c9b5ff3573c65145 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 22 Dec 2011 15:05:14 +0530 Subject: [PATCH] Patch to update idx.. start idx from 1 --- erpnext/patches/update_0_idx.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 erpnext/patches/update_0_idx.py diff --git a/erpnext/patches/update_0_idx.py b/erpnext/patches/update_0_idx.py new file mode 100644 index 0000000000..9c31f1d664 --- /dev/null +++ b/erpnext/patches/update_0_idx.py @@ -0,0 +1,9 @@ +import webnotes +def execute(): + doc_type_list = webnotes.conn.sql("""SELECT DISTINCT parent FROM `tabDocField` where idx=0""") + for doc_type in doc_type_list: + if doc_type and doc_type[0]: + webnotes.conn.sql("""\ + UPDATE `tabDocField` SET idx=idx+1 + WHERE parent=%s + """, doc_type[0])