6 lines
191 B
Python
6 lines
191 B
Python
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
webnotes.conn.commit()
|
|
webnotes.conn.sql("alter table `tabSessions` modify user varchar(180)")
|
|
webnotes.conn.begin() |