2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-03-21 11:45:49 +00:00
|
|
|
import webnotes
|
|
|
|
def execute():
|
|
|
|
webnotes.conn.sql("""\
|
|
|
|
DELETE FROM `tabSingles`
|
|
|
|
WHERE doctype = 'Control Panel'
|
|
|
|
AND field IN ("sync_with_gateway", "mail_password", "auto_email_id",
|
|
|
|
"mail_port", "outgoing_mail_server", "mail_login", "use_ssl")""")
|