diff --git a/erpnext/patches/v5_0/item_patches.py b/erpnext/patches/v5_0/item_patches.py new file mode 100644 index 00000000000..37992adec6f --- /dev/null +++ b/erpnext/patches/v5_0/item_patches.py @@ -0,0 +1,5 @@ +import frappe + +def execute(): + frappe.db.sql("update `tabItem` set end_of_life='2099-12-31' where ifnull(end_of_life, '0000-00-00')='0000-00-00'") + frappe.db.sql("update `tabItem` set website_image = image where ifnull(website_image, '') = 'attach_files:'")