[1121] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[2297] | 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
| 5 | // | Copyright(C) 2008 Piwigo Team http://piwigo.org | |
---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
| 8 | // +-----------------------------------------------------------------------+ |
---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
---|
| 11 | // | the Free Software Foundation | |
---|
| 12 | // | | |
---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 16 | // | General Public License for more details. | |
---|
| 17 | // | | |
---|
| 18 | // | You should have received a copy of the GNU General Public License | |
---|
| 19 | // | along with this program; if not, write to the Free Software | |
---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 21 | // | USA. | |
---|
| 22 | // +-----------------------------------------------------------------------+ |
---|
[1121] | 23 | |
---|
| 24 | if (!defined('PHPWG_ROOT_PATH')) |
---|
| 25 | { |
---|
| 26 | die('Hacking attempt!'); |
---|
| 27 | } |
---|
| 28 | |
---|
| 29 | $upgrade_description = |
---|
| 30 | '#image_category.is_storage replaced by #image.storage_category_id'; |
---|
| 31 | |
---|
| 32 | // +-----------------------------------------------------------------------+ |
---|
| 33 | // | New column | |
---|
| 34 | // +-----------------------------------------------------------------------+ |
---|
| 35 | |
---|
| 36 | $query = ' |
---|
| 37 | ALTER TABLE '.PREFIX_TABLE.'images |
---|
| 38 | ADD storage_category_id smallint(5) unsigned default NULL |
---|
| 39 | ;'; |
---|
| 40 | pwg_query($query); |
---|
| 41 | |
---|
| 42 | $query = ' |
---|
| 43 | SELECT category_id, image_id |
---|
| 44 | FROM '.PREFIX_TABLE.'image_category |
---|
| 45 | WHERE is_storage = \'true\' |
---|
| 46 | ;'; |
---|
| 47 | $result = pwg_query($query); |
---|
| 48 | |
---|
| 49 | $datas = array(); |
---|
| 50 | while ($row = mysql_fetch_array($result)) |
---|
| 51 | { |
---|
| 52 | array_push( |
---|
| 53 | $datas, |
---|
| 54 | array( |
---|
| 55 | 'id' => $row['image_id'], |
---|
| 56 | 'storage_category_id' => $row['category_id'], |
---|
| 57 | ) |
---|
| 58 | ); |
---|
| 59 | } |
---|
| 60 | mass_updates( |
---|
| 61 | PREFIX_TABLE.'images', |
---|
| 62 | array( |
---|
| 63 | 'primary' => array('id'), |
---|
| 64 | 'update' => array('storage_category_id'), |
---|
| 65 | ), |
---|
| 66 | $datas |
---|
| 67 | ); |
---|
| 68 | |
---|
| 69 | // +-----------------------------------------------------------------------+ |
---|
| 70 | // | Delete obsolete column | |
---|
| 71 | // +-----------------------------------------------------------------------+ |
---|
| 72 | |
---|
| 73 | $query = ' |
---|
| 74 | ALTER TABLE '.PREFIX_TABLE.'image_category DROP COLUMN is_storage |
---|
| 75 | ;'; |
---|
| 76 | pwg_query($query); |
---|
| 77 | |
---|
| 78 | // +-----------------------------------------------------------------------+ |
---|
| 79 | // | End notification | |
---|
| 80 | // +-----------------------------------------------------------------------+ |
---|
| 81 | |
---|
| 82 | echo |
---|
| 83 | "\n" |
---|
| 84 | .'Column '.PREFIX_TABLE.'image_category' |
---|
| 85 | .' replaced by '.PREFIX_TABLE.'images.storage_category_id'."\n" |
---|
| 86 | ; |
---|
| 87 | ?> |
---|