Rushabh Mehta | bc7358a | 2013-11-22 12:22:41 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors |
| 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
| 4 | def execute(): |
| 5 | import webnotes |
Pratik Vyas | 7e8f983 | 2013-11-29 19:57:38 +0530 | [diff] [blame] | 6 | webnotes.conn.auto_commit_on_many_writes = True |
Rushabh Mehta | bc7358a | 2013-11-22 12:22:41 +0530 | [diff] [blame] | 7 | for name in webnotes.conn.sql_list("""select name from tabComment"""): |
| 8 | webnotes.get_obj("Comment", name).update_comment_in_doc() |
Pratik Vyas | 7e8f983 | 2013-11-29 19:57:38 +0530 | [diff] [blame] | 9 | webnotes.conn.auto_commit_on_many_writes = False |
| 10 | |