From 9be9856a8175392722eb312fc83b07c8e89fe62b Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Fri, 25 Feb 2022 15:57:41 -1000 Subject: [PATCH] Bug 30185: Missing return in db rev 210600003.pl db rev files are constructed with a return {...}, db rev 210600003.pl is missing return word. I don't know if it can impact the db upgrade but we should fix it for consistency. To test upgrade from a version 21.05 and check db rev is applied. Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize --- installer/data/mysql/db_revs/210600003.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/db_revs/210600003.pl b/installer/data/mysql/db_revs/210600003.pl index e05228a3e8..025f2c895b 100755 --- a/installer/data/mysql/db_revs/210600003.pl +++ b/installer/data/mysql/db_revs/210600003.pl @@ -1,6 +1,6 @@ use Modern::Perl; -{ +return { bug_number => "24434", description => "Add 'WrongTransfer' to branchtransfers.cancellation_reason enum", up => sub { -- 2.20.1