From cf9df28ddd1a42b1af9f2c9d03de5e2c0be1c2cd Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 10 Sep 2009 09:57:18 -0700 Subject: [PATCH] Fix import Story Archive packages with sub-stories. --- docs/upgrades/upgrade_7.7.19-7.8.0.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_7.7.19-7.8.0.pl b/docs/upgrades/upgrade_7.7.19-7.8.0.pl index 68e6d498a..9a8bfd454 100644 --- a/docs/upgrades/upgrade_7.7.19-7.8.0.pl +++ b/docs/upgrades/upgrade_7.7.19-7.8.0.pl @@ -86,7 +86,7 @@ sub addMatrixColumnDefaults { my $session = shift; print "\tUpdate existing Matrixes with default values for maxComparisons... " unless $quiet; $session->db->write(q|UPDATE Matrix set maxComparisons=25 where maxComparisons IS NULL|); - $session->db->write(q|UPDATE Matrix set maxComparisonsGroup=25 where maxComparisonsGroup IS NULL|); + $session->db->write(q|UPDATE Matrix set maxComparisonsGroupInt=25 where maxComparisonsGroupInt IS NULL|); $session->db->write(q|UPDATE Matrix set maxComparisonsPrivileged=25 where maxComparisonsPrivileged IS NULL|); # and here's our code print "DONE!\n" unless $quiet;