source: branches/1.6/install/db/22.9-database.php @ 10243

Last change on this file since 10243 was 1594, checked in by plg, 18 years ago

Bug fixed: #users.auto_login_key moved to #user_infos.auto_login_key because
table users does not contain information specificaly related to
PhpWebGallery. With auto_login_key field in #users, external authentication
won't work.

Warning: when updating with subversion, you'll have to go directly to
upgrade_feed.php

File size: 2.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2006-07-23 14:17:00 +0200 (dim, 23 jui 2006) $
10// | last modifier : $Author: nikrou $
11// | revision      : $Revision: 1492 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28if (!defined('PHPWG_ROOT_PATH'))
29{
30  die('Hacking attempt!');
31}
32
33$upgrade_description = '#users.auto_login_key to #user_infos.auto_login_key';
34
35$query = '
36ALTER TABLE '.PREFIX_TABLE.'user_infos
37  ADD auto_login_key varchar(64) NOT NULL
38;';
39pwg_query($query);
40
41include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
42@include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
43
44$query = '
45SELECT '.$conf['user_fields']['id'].' AS uid, auto_login_key
46  FROM '.PREFIX_TABLE.'users
47  WHERE auto_login_key != \'\'
48;';
49$result = pwg_query($query);
50
51$datas = array();
52
53while ($row = mysql_fetch_array($result))
54{
55  array_push(
56    $datas,
57    array(
58      'user_id' => $row['uid'],
59      'auto_login_key' => $row['auto_login_key'],
60      )
61    );
62}
63
64mass_updates(
65  PREFIX_TABLE.'user_infos',
66  array(
67    'primary' => array('user_id'),
68    'update'  => array('auto_login_key')
69    ),
70  $datas
71  );
72
73$query = '
74ALTER TABLE '.PREFIX_TABLE.'users
75  DROP COLUMN auto_login_key
76;';
77pwg_query($query);
78
79echo
80"\n"
81. $upgrade_description
82."\n"
83;
84?>
Note: See TracBrowser for help on using the repository browser.