From f96609b9ac6e6fcce68eec5fd95eb989ea908b42 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sat, 16 Aug 2008 17:56:28 +0000 Subject: [PATCH] upgrade.php: fix from zl2tod (via IRC) git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@448 a1433add-5e2c-0410-b055-b7f2511e0802 --- upgrade.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/upgrade.php b/upgrade.php index b54c68cb..cbcfe6eb 100644 --- a/upgrade.php +++ b/upgrade.php @@ -929,7 +929,6 @@ function upgrade_439_mysql() { "); } function upgrade_439_pgsql() { - db_query_parsed(" - ALTER TABLE $table_fetchmail ADD COLUMN ssl BOOLEAN NOT NULL DEFAULT false; - "); + $table_fetchmail = table_by_key('fetchmail'); + db_query_parsed("ALTER TABLE $table_fetchmail ADD COLUMN ssl BOOLEAN NOT NULL DEFAULT false"); }