b15ef8450f
* [patch] rename field * Employee Property History child table * remove child tables
7 lines
306 B
Python
7 lines
306 B
Python
import frappe
|
|
from frappe.model.utils.rename_field import rename_field
|
|
|
|
def execute():
|
|
frappe.reload_doc("hr", "doctype", "leave_type")
|
|
frappe.db.sql("""ALTER table `tabLeave Type` modify max_days_allowed int(8) NOT NULL""")
|
|
rename_field("Leave Type", "max_days_allowed", "max_continuous_days_allowed") |