10 lines
209 B
Python
10 lines
209 B
Python
"""
|
|
Modify the Integer 10 Digits Value to BigInt 20 Digit value
|
|
to generate long Naming Series
|
|
|
|
"""
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.db.sql(""" ALTER TABLE `tabSeries` MODIFY current BIGINT """)
|