2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2012-02-23 07:05:32 +00:00
|
|
|
|
2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2013-06-24 09:01:56 +00:00
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2013-06-24 10:17:02 +00:00
|
|
|
try:
|
|
|
|
webnotes.conn.sql("""delete from `tabSearch Criteria` where ifnull(standard, 'No') = 'Yes'""")
|
|
|
|
except Exception, e:
|
|
|
|
pass
|