Run method after migrate

Hello all,
I need to run a method like patch.
Patch execute only one time, but I need run my method every migration.
How can i do this.

Check

I just replace method get_doc_files from frappe.model.sync mode.
From

def get_doc_files(files, start_path, force=0, sync_everything = False, verbose=False):
	"""walk and sync all doctypes and pages"""

	document_type = ['doctype', 'page', 'report', 'print_format', 'website_theme', 'web_form', 'email_alert']
	for doctype in document_type:
		doctype_path = os.path.join(start_path, doctype)
		if os.path.exists(doctype_path):

			for docname in os.listdir(doctype_path):
				if os.path.isdir(os.path.join(doctype_path, docname)):
					doc_path = os.path.join(doctype_path, docname, docname) + ".json"
					if os.path.exists(doc_path):
						if not doc_path in files:
							files.append(doc_path)

To

def get_files(files, start_path, force=0, sync_everything = False, verbose=False):
    """walk and sync all doctypes and pages"""
    document_type = ['doctype', 'page', 'report', 'print_format', 'website_theme', 'web_form', 'email_alert', 'sms_alert']
    for doctype in document_type:
        doctype_path = os.path.join(start_path, doctype)
        if os.path.exists(doctype_path):

            for docname in os.listdir(doctype_path):
                if os.path.isdir(os.path.join(doctype_path, docname)):
                    doc_path = os.path.join(doctype_path, docname, docname) + ".json"
                    if os.path.exists(doc_path):
                        if not doc_path in files:
                            files.append(doc_path)

just add “sms_alert” in document_type variable.
:slight_smile:
So now migrate sms_alert module, when run migrate commend.