source: trunk/install/db/18-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.1 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 = 'Reduce length of #_user_mail_notification.check_key';
30
31include_once(PHPWG_ROOT_PATH.'include/constants.php');
32
33include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
34include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php');
35
36// +-----------------------------------------------------------------------+
37// |                            Upgrade content                            |
38// +-----------------------------------------------------------------------+
39echo "Compute new check_key";
40$query = '
41select
42  user_id
43from
44  '.USER_MAIL_NOTIFICATION_TABLE.'
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      'user_id'    => $row['user_id'],
56      'check_key' => find_available_check_key()
57      )
58    );
59}
60
61mass_updates(
62  USER_MAIL_NOTIFICATION_TABLE,
63  array(
64    'primary' => array('user_id'),
65    'update'  => array('check_key')
66    ),
67  $datas
68  );
69
70echo "Alter table ".USER_MAIL_NOTIFICATION_TABLE;
71$query = "
72alter table ".USER_MAIL_NOTIFICATION_TABLE."
73  modify column `check_key` varchar(16) binary NOT NULL default ''
74;";
75pwg_query($query);
76
77
78// +-----------------------------------------------------------------------+
79// |                           End notification                            |
80// +-----------------------------------------------------------------------+
81
82echo
83"\n"
84.'Column '.USER_MAIL_NOTIFICATION_TABLE.'.check_key changed'
85."\n"
86;
87
88?>
Note: See TracBrowser for help on using the repository browser.