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-11-22 13:52:38 +00:00
|
|
|
import webnotes
|
|
|
|
def execute():
|
|
|
|
"""
|
|
|
|
in old system, deleted profiles were set as docstatus=2
|
|
|
|
in new system, its either disabled or deleted.
|
|
|
|
"""
|
|
|
|
webnotes.conn.sql("""update `tabProfile` set docstatus=0, enabled=0
|
|
|
|
where docstatus=2""")
|