brotherton-erpnext/erpnext/patches/v11_0/drop_column_max_days_allowed.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
263 B
Python
Raw Normal View History

from __future__ import unicode_literals
import frappe
def execute():
if frappe.db.exists("DocType", "Leave Type"):
if 'max_days_allowed' in frappe.db.get_table_columns("Leave Type"):
frappe.db.sql("alter table `tabLeave Type` drop column max_days_allowed")