Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Brandt <jbrandt@bestpractical.com>2022-11-09 23:12:44 +0300
committersunnavy <sunnavy@bestpractical.com>2022-11-10 00:09:01 +0300
commit8812726d90dd966f2e4f3b411654e381240ad351 (patch)
tree9161fe9baf51b5ccaa6641f877fc4f11d1187a0c
parent203a112b97bf349a5aa983b3ca1ea3da390b35d4 (diff)
Don't error if users4 index has been removedmaint4.4-trunk
The Users4 index has been in RT for a very long time, so it should be found, but we shouldn't error if it has been removed.
-rw-r--r--etc/upgrade/4.4.6/schema.Pg2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/upgrade/4.4.6/schema.Pg b/etc/upgrade/4.4.6/schema.Pg
index 628b446a75..c89407d9e0 100644
--- a/etc/upgrade/4.4.6/schema.Pg
+++ b/etc/upgrade/4.4.6/schema.Pg
@@ -1,2 +1,2 @@
-DROP INDEX Users4;
+DROP INDEX IF EXISTS Users4;
CREATE INDEX Users4 ON Users (LOWER(EmailAddress));