summaryrefslogtreecommitdiff
path: root/rt/etc/upgrade/4.2.7
diff options
context:
space:
mode:
Diffstat (limited to 'rt/etc/upgrade/4.2.7')
-rw-r--r--rt/etc/upgrade/4.2.7/content15
1 files changed, 15 insertions, 0 deletions
diff --git a/rt/etc/upgrade/4.2.7/content b/rt/etc/upgrade/4.2.7/content
new file mode 100644
index 0000000..e828cc7
--- /dev/null
+++ b/rt/etc/upgrade/4.2.7/content
@@ -0,0 +1,15 @@
+use strict;
+use warnings;
+
+our @Initial = (
+ sub {
+ # We do the delete in pure SQL because Attribute collections
+ # otherwise attempt to hash everything in memory. As this may
+ # be a large list, do it directly.
+ RT->DatabaseHandle->dbh->do(<<EOSQL);
+ DELETE FROM Attributes
+ WHERE (Name = 'LinkValueTo' OR Name = 'IncludeContentForValue')
+ AND (LENGTH(Content) = 0 OR Content IS NULL)
+EOSQL
+ },
+);