From 3e6d77b6bd6fdc712f74cc2ce6604e49604400bf Mon Sep 17 00:00:00 2001 From: Mohit Yadav <105265192+mohityadav766@users.noreply.github.com> Date: Fri, 13 Jun 2025 08:57:18 +0530 Subject: [PATCH] Fix Reset Link Template (#21747) * Fix Reset Link Template * 1.7.3 (cherry picked from commit 4309f79453c3a2382b1faed7273c29fa51d83030) --- bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql | 3 +++ .../sql/migrations/native/1.7.3/postgres/schemaChanges.sql | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql create mode 100644 bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql diff --git a/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql b/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql new file mode 100644 index 00000000000..0858e3bda3a --- /dev/null +++ b/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql @@ -0,0 +1,3 @@ +-- remove old reset link email template +DELETE from doc_Store where name = 'reset-link' and entityType = 'EmailTemplate'; + diff --git a/bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql b/bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql new file mode 100644 index 00000000000..1542ed7ee85 --- /dev/null +++ b/bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql @@ -0,0 +1,2 @@ +-- remove old reset link email template +DELETE from doc_Store where name = 'reset-link' and entityType = 'EmailTemplate'; \ No newline at end of file