brotherton-erpnext/erpnext/patches/v10_0/update_hub_connector_domain.py
2018-03-19 18:17:54 +05:30

9 lines
236 B
Python

import frappe
def execute():
if frappe.db.table_exists("Data Migration Connector"):
frappe.db.sql("""
UPDATE `tabData Migration Connector`
SET hostname = 'https://hubmarket.org'
WHERE connector_name = 'Hub Connector'
""")