seitime-frappe/frappe/patches/v10_0/modify_naming_series_table.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

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 """)