8 lines
271 B
Python
8 lines
271 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
webnotes.conn.sql("update `tabDocPerm` set permlevel = 0 where parent = 'Address'")
|