5 lines
151 B
Python
5 lines
151 B
Python
def execute():
|
|
import webnotes
|
|
webnotes.conn.commit()
|
|
webnotes.conn.sql("alter table `tabSessions` modify user varchar(180)")
|
|
webnotes.conn.begin() |