From 6124c5573e54efe32d021b42cee0e6f5d5503fd4 Mon Sep 17 00:00:00 2001 From: Mohit Yadav <105265192+mohityadav766@users.noreply.github.com> Date: Fri, 13 Jun 2025 09:17:41 +0530 Subject: [PATCH] fix tests (#21751) --- bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql | 2 +- .../sql/migrations/native/1.7.3/postgres/schemaChanges.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql b/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql index 0858e3bda3a..52f9b6bbdb6 100644 --- a/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql +++ b/bootstrap/sql/migrations/native/1.7.3/mysql/schemaChanges.sql @@ -1,3 +1,3 @@ -- remove old reset link email template -DELETE from doc_Store where name = 'reset-link' and entityType = 'EmailTemplate'; +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 index 1542ed7ee85..dca2be76d81 100644 --- a/bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql +++ b/bootstrap/sql/migrations/native/1.7.3/postgres/schemaChanges.sql @@ -1,2 +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 +DELETE from doc_store where name = 'reset-link' and entityType = 'EmailTemplate'; \ No newline at end of file