6 lines
134 B
Python
6 lines
134 B
Python
import frappe
|
|
|
|
def execute():
|
|
if frappe.db.table_exists("POS Setting"):
|
|
frappe.rename_doc("DocType", "POS Setting", "POS Profile")
|