diff options
author | plegall <plg@piwigo.org> | 2011-01-04 10:55:08 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-01-04 10:55:08 +0000 |
commit | b4d2a1362fa6dc15d8a1e849d5e36fe341953baf (patch) | |
tree | 3b3a6a2246e00ec50dfc5d57ced6bffaad8e9012 /install/db | |
parent | 621ed0b391f81bb7d636d1e447154e1f5b43fb24 (diff) |
feature 2095 added: new column images.added_by (foreign key on users.id)
git-svn-id: http://piwigo.org/svn/trunk@8464 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/92-database.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/install/db/92-database.php b/install/db/92-database.php new file mode 100644 index 000000000..7ac5c52da --- /dev/null +++ b/install/db/92-database.php @@ -0,0 +1,57 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Piwigo - a PHP based picture gallery | +// +-----------------------------------------------------------------------+ +// | Copyright(C) 2008-2010 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 = 'New colum images.added_by, reference to users.id'; + +// Add column +$query = 'ALTER TABLE '.IMAGES_TABLE.' ADD COLUMN '; + +if ('mysql' == $conf['dblayer']) +{ + $query.= ' added_by smallint(5)'; +} + +if (in_array($conf['dblayer'], array('pgsql', 'sqlite', 'pdo-sqlite'))) +{ + $query.= ' "added_by" INTEGER default 0'; +} + +$query.= ' NOT NULL;'; + +pwg_query($query); + +// set the existing photos with the webmaster_id as added_by +$query = 'UPDATE '.IMAGES_TABLE.' SET added_by = '.$conf['webmaster_id'].';'; +pwg_query($query); + +echo +"\n" +. $upgrade_description +."\n" +; +?>
\ No newline at end of file |