From fea3b64dd0d58524eb30a76c950f2b0caaa02745 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 3 Aug 2012 19:14:42 +0530 Subject: [PATCH] fixed patch: repost stock due to wrong packing list --- .../patches/july_2012/repost_stock_due_to_wrong_packing_list.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/patches/july_2012/repost_stock_due_to_wrong_packing_list.py b/erpnext/patches/july_2012/repost_stock_due_to_wrong_packing_list.py index 659bcc0408..a8077c224d 100644 --- a/erpnext/patches/july_2012/repost_stock_due_to_wrong_packing_list.py +++ b/erpnext/patches/july_2012/repost_stock_due_to_wrong_packing_list.py @@ -3,7 +3,6 @@ import webnotes def execute(): # add index webnotes.conn.commit() - webnotes.conn.sql("""drop index item_code_warehouse on `tabDelivery Note Packing Item`""") webnotes.conn.sql("""create index item_code_warehouse on `tabDelivery Note Packing Item` (item_code, warehouse)""") webnotes.conn.begin()