source: trunk/install/db/9-database.php @ 4325

Last change on this file since 4325 was 4325, checked in by nikrou, 14 years ago

Feature 1244 resolved
Replace all mysql functions in core code by ones independant of database engine

Fix small php code synxtax : hash must be accessed with [ ] and not { }.

  • Property svn:eol-style set to LF
File size: 3.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2009 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// +-----------------------------------------------------------------------+
23
24if (!defined('PHPWG_ROOT_PATH'))
25{
26  die('Hacking attempt!');
27}
28
29$upgrade_description =
30  'Column #image_category.is_storage replaces #images.storage_category_id';
31
32// +-----------------------------------------------------------------------+
33// |                            Upgrade content                            |
34// +-----------------------------------------------------------------------+
35
36$query = "
37ALTER TABLE ".PREFIX_TABLE."image_category
38  ADD COLUMN is_storage ENUM('true','false') DEFAULT 'false'
39;";
40pwg_query($query);
41
42$query = '
43SELECT id, storage_category_id
44  FROM '.PREFIX_TABLE.'images
45;';
46$result = pwg_query($query);
47
48$datas = array();
49
50while ($row = pwg_db_fetch_assoc($result))
51{
52  array_push(
53    $datas,
54    array(
55      'image_id'    => $row['id'],
56      'category_id' => $row['storage_category_id'],
57      'is_storage'  => 'true',
58      )
59    );
60}
61
62mass_updates(
63  PREFIX_TABLE.'image_category',
64  array(
65    'primary' => array('image_id', 'category_id'),
66    'update'  => array('is_storage')
67    ),
68  $datas
69  );
70
71$query = '
72ALTER TABLE '.PREFIX_TABLE.'images
73  DROP COLUMN storage_category_id
74;';
75pwg_query($query);
76
77// +-----------------------------------------------------------------------+
78// |                           End notification                            |
79// +-----------------------------------------------------------------------+
80
81echo
82"\n"
83.'Column '.PREFIX_TABLE.'image_category.is_storage created and filled'
84."\n"
85;
86?>
Note: See TracBrowser for help on using the repository browser.