mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 17:15:04 +00:00
7 lines
189 B
Python
7 lines
189 B
Python
from __future__ import unicode_literals
|
|
def execute():
|
|
import webnotes
|
|
webnotes.conn.commit()
|
|
webnotes.conn.sql("alter table __CacheItem modify `value` longtext")
|
|
webnotes.conn.begin()
|