From 11654460e748a644893110a043c760a1fe25dd5b Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 9 Nov 2009 14:46:37 +0100 Subject: [PATCH] Bei der Migration zu "Anrede -> Geschlecht" nicht nachfragen, wenn Tabelle leer ist. --- sql/Pg-upgrade2/cp_greeting_migration.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sql/Pg-upgrade2/cp_greeting_migration.pl b/sql/Pg-upgrade2/cp_greeting_migration.pl index 46fa43885..93f62134b 100644 --- a/sql/Pg-upgrade2/cp_greeting_migration.pl +++ b/sql/Pg-upgrade2/cp_greeting_migration.pl @@ -88,6 +88,11 @@ sub print_question { sub do_update { # main function + # Do not ask the user anything if there are no entries in the + # contacts table. + my ($data_exists) = $dbh->selectrow_array("SELECT * FROM contacts LIMIT 1"); + return 1 if !$data_exists; + # first of all check if gender.sql was already run and thus cp_gender exists # if it exists there is no need for this update anymore, so return # without doing anything -- 2.20.1