2019-01-22 18:22:20 +05:30
|
|
|
from __future__ import unicode_literals
|
2018-03-15 12:48:32 +05:30
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2018-03-19 18:17:54 +05:30
|
|
|
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'
|
|
|
|
""")
|