diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/db/100-database.php | 52 | ||||
-rw-r--r-- | install/piwigo_structure-mysql.sql | 2 | ||||
-rw-r--r-- | install/piwigo_structure-pdo-sqlite.sql | 2 | ||||
-rw-r--r-- | install/piwigo_structure-pgsql.sql | 2 | ||||
-rw-r--r-- | install/piwigo_structure-sqlite.sql | 2 |
5 files changed, 60 insertions, 0 deletions
diff --git a/install/db/100-database.php b/install/db/100-database.php new file mode 100644 index 000000000..91a27f645 --- /dev/null +++ b/install/db/100-database.php @@ -0,0 +1,52 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Piwigo - a PHP based photo gallery | +// +-----------------------------------------------------------------------+ +// | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org | +// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | +// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +if (!defined('PHPWG_ROOT_PATH')) +{ + die('Hacking attempt!'); +} + +$upgrade_description = 'add high_width and high_height fields into IMAGES_TABLE'; + +if ('mysql' == $conf['dblayer']) +{ + $query = 'ALTER TABLE '.IMAGES_TABLE.' + ADD COLUMN `high_width` smallint(9) unsigned default NULL, + ADD COLUMN `high_height` smallint(9) unsigned default NULL;'; +} + +if (in_array($conf['dblayer'], array('pgsql', 'sqlite', 'pdo-sqlite'))) +{ + $query = 'ALTER TABLE '.IMAGES_TABLE.' + ADD COLUMN "high_width" INTEGER, + ADD COLUMN "high_height" INTEGER;'; +} + +pwg_query($query); + +echo +"\n" +. $upgrade_description +."\n" +; +?>
\ No newline at end of file diff --git a/install/piwigo_structure-mysql.sql b/install/piwigo_structure-mysql.sql index 44c627b5f..31b5183ce 100644 --- a/install/piwigo_structure-mysql.sql +++ b/install/piwigo_structure-mysql.sql @@ -192,6 +192,8 @@ CREATE TABLE `piwigo_images` ( `path` varchar(255) NOT NULL default '', `storage_category_id` smallint(5) unsigned default NULL, `high_filesize` mediumint(9) unsigned default NULL, + `high_width` smallint(9) unsigned default NULL, + `high_height` smallint(9) unsigned default NULL, `level` tinyint unsigned NOT NULL default '0', `md5sum` char(32) default NULL, `added_by` smallint(5) NOT NULL default '0', diff --git a/install/piwigo_structure-pdo-sqlite.sql b/install/piwigo_structure-pdo-sqlite.sql index a46c5929d..f89fd160f 100644 --- a/install/piwigo_structure-pdo-sqlite.sql +++ b/install/piwigo_structure-pdo-sqlite.sql @@ -188,6 +188,8 @@ CREATE TABLE piwigo_images "path" VARCHAR(255) default '' NOT NULL, "storage_category_id" INTEGER, "high_filesize" INTEGER, + "high_width" INTEGER, + "high_height" INTEGER, "level" INTEGER default 0 NOT NULL, "md5sum" CHAR(32), "added_by" INTEGER default 0 NOT NULL, diff --git a/install/piwigo_structure-pgsql.sql b/install/piwigo_structure-pgsql.sql index ca1c003e0..940768e85 100644 --- a/install/piwigo_structure-pgsql.sql +++ b/install/piwigo_structure-pgsql.sql @@ -232,6 +232,8 @@ CREATE TABLE "piwigo_images" "path" VARCHAR(255) default '' NOT NULL, "storage_category_id" INTEGER, "high_filesize" INTEGER, + "high_width" INTEGER, + "high_height" INTEGER, "level" INTEGER default 0 NOT NULL, "md5sum" CHAR(32), "added_by" INTEGER default 0 NOT NULL, diff --git a/install/piwigo_structure-sqlite.sql b/install/piwigo_structure-sqlite.sql index a46c5929d..f89fd160f 100644 --- a/install/piwigo_structure-sqlite.sql +++ b/install/piwigo_structure-sqlite.sql @@ -188,6 +188,8 @@ CREATE TABLE piwigo_images "path" VARCHAR(255) default '' NOT NULL, "storage_category_id" INTEGER, "high_filesize" INTEGER, + "high_width" INTEGER, + "high_height" INTEGER, "level" INTEGER default 0 NOT NULL, "md5sum" CHAR(32), "added_by" INTEGER default 0 NOT NULL, |