SF.net SVN: postfixadmin:[438] trunk/upgrade.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <chr...@us...> - 2008-08-05 20:26:22
|
Revision: 438
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=438&view=rev
Author: christian_boltz
Date: 2008-08-05 20:26:30 +0000 (Tue, 05 Aug 2008)
Log Message:
-----------
upgrade.php:
- upgrade_362_*() renamed to upgrade_438_* to make sure it runs after an
upgrade from 2.2.x
Modified Paths:
--------------
trunk/upgrade.php
Modified: trunk/upgrade.php
===================================================================
--- trunk/upgrade.php 2008-08-05 18:10:19 UTC (rev 437)
+++ trunk/upgrade.php 2008-08-05 20:26:30 UTC (rev 438)
@@ -859,7 +859,8 @@
/**
* Create alias_domain table - MySQL
*/
-function upgrade_362_mysql() {
+# function upgrade_362_mysql() { # renamed to _438 to make sure it runs after an upgrade from 2.2.x
+function upgrade_438_mysql() {
# Table structure for table alias_domain
#
$table_alias_domain = table_by_key('alias_domain');
@@ -880,7 +881,8 @@
/**
* Create alias_domain table - PgSQL
*/
-function upgrade_362_pgsql() {
+# function upgrade_362_pgsql() { # renamed to _438 to make sure it runs after an upgrade from 2.2.x
+function upgrade_438_pgsql() {
# Table structure for table alias_domain
$table_alias_domain = table_by_key('alias_domain');
$table_domain = table_by_key('domain');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|