/dd/ -> 0_0029_inc.php
1 <?php
2
3 // 0_0029_inc.php - Adds 'user-defined' table 'files'
4 // 0_0029_inc.php - author: Nico Stuurman
5
6 /***************************************************************************
7 * Copyright (c) 2002 by Nico Stuurman *
8 * ------------------------------------------------------------------------ *
9 * This code is part of phplabware (http://phplabware.sf.net) *
10 * *
11 * *
12 * This program is free software; you can redistribute it and/or modify it *
13 * under the terms of the GNU General Public License as published by the *
14 * Free Software Foundation; either version 2 of the License, or (at your *
15 * option) any later version. *
16 \**************************************************************************/
17
18
19 $db->Execute("ALTER TABLE users ADD COLUMN createdbyid int");
20 $db->Execute("ALTER TABLE users ADD COLUMN createdbyip text");
21 $db->Execute("ALTER TABLE users ADD COLUMN createddate int");
22 $db->Execute("ALTER TABLE users ADD COLUMN modbyid int");
23 $db->Execute("ALTER TABLE users ADD COLUMN modbyip text");
24 $db->Execute("ALTER TABLE users ADD COLUMN moddate int");
25
26
27 ?>