diff --git a/crm/patches.txt b/crm/patches.txt index f15c3a90..f4ea0695 100644 --- a/crm/patches.txt +++ b/crm/patches.txt @@ -3,4 +3,5 @@ # Read docs to understand patches: https://frappeframework.com/docs/v14/user/en/database-migrations [post_model_sync] -# Patches added in this section will be executed after doctypes are migrated \ No newline at end of file +# Patches added in this section will be executed after doctypes are migrated +crm.patches.v1_0.create_email_template_custom_fields \ No newline at end of file diff --git a/crm/patches/v1_0/__init__.py b/crm/patches/v1_0/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/crm/patches/v1_0/create_email_template_custom_fields.py b/crm/patches/v1_0/create_email_template_custom_fields.py new file mode 100644 index 00000000..ea6665d7 --- /dev/null +++ b/crm/patches/v1_0/create_email_template_custom_fields.py @@ -0,0 +1,5 @@ + +from crm.install import add_email_template_custom_fields + +def execute(): + add_email_template_custom_fields() \ No newline at end of file