From 70cf50766e62aa3a06f058d8ea062dc36935013f Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 1 Oct 2011 22:56:33 +0000 Subject: feature 2452 added: upgrade script from 2.2 to 2.3 git-svn-id: http://piwigo.org/svn/trunk@12296 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/upgrade_2.2.0.php | 118 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 install/upgrade_2.2.0.php (limited to 'install/upgrade_2.2.0.php') diff --git a/install/upgrade_2.2.0.php b/install/upgrade_2.2.0.php new file mode 100644 index 000000000..7944d2232 --- /dev/null +++ b/install/upgrade_2.2.0.php @@ -0,0 +1,118 @@ += 98) + { + break; + } + + array_push( + $inserts, + array( + 'id' => $upgrade_id, + 'applied' => CURRENT_DATE, + 'description' => '[migration from 2.2.0 to '.PHPWG_VERSION.'] not applied', + ) + ); +} + +if (!empty($inserts)) +{ + mass_inserts( + '`'.UPGRADE_TABLE.'`', + array_keys($inserts[0]), + $inserts + ); +} + +// +-----------------------------------------------------------------------+ +// | Perform upgrades | +// +-----------------------------------------------------------------------+ + +ob_start(); +echo '
';
+
+for ($upgrade_id = 98; $upgrade_id <= 111; $upgrade_id++)
+{
+  if (!file_exists(UPGRADES_PATH.'/'.$upgrade_id.'-database.php'))
+  {
+    break;
+  }
+  
+  unset($upgrade_description);
+
+  echo "\n\n";
+  echo '=== upgrade '.$upgrade_id."\n";
+
+  // include & execute upgrade script. Each upgrade script must contain
+  // $upgrade_description variable which describe briefly what the upgrade
+  // script does.
+  include(UPGRADES_PATH.'/'.$upgrade_id.'-database.php');
+
+  // notify upgrade
+  $query = '
+INSERT INTO `'.PREFIX_TABLE.'upgrade`
+  (id, applied, description)
+  VALUES
+  (\''.$upgrade_id.'\', NOW(), \'[migration from 2.2.0 to '.PHPWG_VERSION.'] '.$upgrade_description.'\')
+;';
+  pwg_query($query);
+}
+
+echo '
'; +ob_end_clean(); + +// now we upgrade from 2.2.0 +// include_once(PHPWG_ROOT_PATH.'install/upgrade_2.2.0.php'); +?> -- cgit v1.2.3