Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: pgsql_db_tables.php 4271 2008-11-16 06:20:15Z Tikitiki $
| * $Id: pgsql_db_tables.php 4392 2009-07-05 21:36:50Z RyanGordon $
|
*/
|
*/
|
| // Disallow direct access to this file for security reasons if(!defined("IN_MYBB")) { die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined."); }
|
$tables[] = "CREATE TABLE mybb_adminlog ( uid int NOT NULL default '0',
| $tables[] = "CREATE TABLE mybb_adminlog ( uid int NOT NULL default '0',
|
Zeile 179 | Zeile 185 |
---|
dateline int NOT NULL default '0', starttime int NOT NULL default '0', endtime int NOT NULL default '0',
|
dateline int NOT NULL default '0', starttime int NOT NULL default '0', endtime int NOT NULL default '0',
|
timezone int NOT NULL default '0',
| timezone varchar(4) NOT NULL default '0',
|
ignoretimezone int NOT NULL default '0', usingtime int NOT NULL default '0', repeats text NOT NULL,
| ignoretimezone int NOT NULL default '0', usingtime int NOT NULL default '0', repeats text NOT NULL,
|
Zeile 966 | Zeile 972 |
---|
expired int NOT NULL default '0', daterevoked bigint NOT NULL default '0', revokedby int NOT NULL default '0',
|
expired int NOT NULL default '0', daterevoked bigint NOT NULL default '0', revokedby int NOT NULL default '0',
|
revokereason text NOT NULL, notes text NOT NULL,
| revokereason text NOT NULL default '', notes text NOT NULL default '',
|
PRIMARY KEY(wid) );";
| PRIMARY KEY(wid) );";
|