Newer
Older

Dries Buytaert
committed
function system_install() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
db_query("CREATE TABLE {access} (

Dries Buytaert
committed
aid tinyint NOT NULL auto_increment,

Dries Buytaert
committed
mask varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',

Dries Buytaert
committed
status tinyint NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (aid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {authmap} (

Dries Buytaert
committed
aid int unsigned NOT NULL auto_increment,
uid int NOT NULL default '0',

Dries Buytaert
committed
authname varchar(128) NOT NULL default '',
module varchar(128) NOT NULL default '',
PRIMARY KEY (aid),
UNIQUE KEY authname (authname)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {blocks} (
module varchar(64) DEFAULT '' NOT NULL,
delta varchar(32) NOT NULL default '0',
theme varchar(255) NOT NULL default '',

Dries Buytaert
committed
status tinyint DEFAULT '0' NOT NULL,
weight tinyint DEFAULT '0' NOT NULL,

Dries Buytaert
committed
region varchar(64) DEFAULT 'left' NOT NULL,

Dries Buytaert
committed
custom tinyint DEFAULT '0' NOT NULL,
throttle tinyint DEFAULT '0' NOT NULL,
visibility tinyint DEFAULT '0' NOT NULL,
pages text DEFAULT '' NOT NULL,
title varchar(64) DEFAULT '' NOT NULL

Dries Buytaert
committed
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {boxes} (

Dries Buytaert
committed
bid tinyint NOT NULL auto_increment,

Dries Buytaert
committed
body longtext,
info varchar(128) NOT NULL default '',

Dries Buytaert
committed
format int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (bid),
UNIQUE KEY info (info)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {cache} (
cid varchar(255) NOT NULL default '',
data longblob,

Dries Buytaert
committed
expire int NOT NULL default '0',
created int NOT NULL default '0',

Dries Buytaert
committed
headers text,
PRIMARY KEY (cid),
INDEX expire (expire)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {comments} (

Dries Buytaert
committed
cid int NOT NULL auto_increment,
pid int NOT NULL default '0',
nid int NOT NULL default '0',
uid int NOT NULL default '0',

Dries Buytaert
committed
subject varchar(64) NOT NULL default '',
comment longtext NOT NULL,
hostname varchar(128) NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0',
score mediumint NOT NULL default '0',
status tinyint unsigned NOT NULL default '0',
format int NOT NULL default '0',

Dries Buytaert
committed
thread varchar(255) NOT NULL,
users longtext,
name varchar(60) default NULL,
mail varchar(64) default NULL,
homepage varchar(255) default NULL,
PRIMARY KEY (cid),
KEY lid (nid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {node_comment_statistics} (

Dries Buytaert
committed
nid int unsigned NOT NULL auto_increment,
last_comment_timestamp int NOT NULL default '0',

Dries Buytaert
committed
last_comment_name varchar(60) default NULL,

Dries Buytaert
committed
last_comment_uid int NOT NULL default '0',
comment_count int unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (nid),
KEY node_comment_timestamp (last_comment_timestamp)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {files} (

Dries Buytaert
committed
fid int unsigned NOT NULL default 0,
nid int unsigned NOT NULL default 0,

Dries Buytaert
committed
filename varchar(255) NOT NULL default '',
filepath varchar(255) NOT NULL default '',
filemime varchar(255) NOT NULL default '',

Dries Buytaert
committed
filesize int unsigned NOT NULL default 0,

Dries Buytaert
committed
PRIMARY KEY (fid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {file_revisions} (

Dries Buytaert
committed
fid int unsigned NOT NULL default 0,
vid int unsigned NOT NULL default 0,

Dries Buytaert
committed
description varchar(255) NOT NULL default '',

Dries Buytaert
committed
list tinyint unsigned NOT NULL default 0,

Dries Buytaert
committed
PRIMARY KEY (fid, vid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {filter_formats} (

Dries Buytaert
committed
format int NOT NULL auto_increment,

Dries Buytaert
committed
name varchar(255) NOT NULL default '',
roles varchar(255) NOT NULL default '',

Dries Buytaert
committed
cache tinyint NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (format),
UNIQUE KEY (name)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {filters} (

Dries Buytaert
committed
format int NOT NULL default '0',

Dries Buytaert
committed
module varchar(64) NOT NULL default '',

Dries Buytaert
committed
delta tinyint DEFAULT '0' NOT NULL,
weight tinyint DEFAULT '0' NOT NULL,

Dries Buytaert
committed
INDEX (weight)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {flood} (
event varchar(64) NOT NULL default '',
hostname varchar(128) NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0'

Dries Buytaert
committed
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {history} (

Dries Buytaert
committed
uid int NOT NULL default '0',
nid int NOT NULL default '0',
timestamp int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (uid,nid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {menu} (

Dries Buytaert
committed
mid int unsigned NOT NULL default '0',
pid int unsigned NOT NULL default '0',

Dries Buytaert
committed
path varchar(255) NOT NULL default '',
title varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',

Dries Buytaert
committed
weight tinyint NOT NULL default '0',
type int unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (mid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {node} (

Dries Buytaert
committed
nid int unsigned NOT NULL auto_increment,
vid int unsigned NOT NULL default '0',

Dries Buytaert
committed
type varchar(32) NOT NULL default '',
title varchar(128) NOT NULL default '',

Dries Buytaert
committed
uid int NOT NULL default '0',
status int NOT NULL default '1',
created int NOT NULL default '0',
changed int NOT NULL default '0',
comment int NOT NULL default '0',
promote int NOT NULL default '0',
moderate int NOT NULL default '0',
sticky int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (nid, vid),
UNIQUE KEY vid (vid),
KEY node_type (type(4)),
KEY node_title_type (title, type(4)),
KEY status (status),
KEY uid (uid),
KEY node_moderate (moderate),
KEY node_promote_status (promote, status),
KEY node_created (created),
KEY node_changed (changed),
KEY node_status_type (status, type, nid),
KEY nid (nid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {node_access} (

Dries Buytaert
committed
nid int unsigned NOT NULL default '0',
gid int unsigned NOT NULL default '0',

Dries Buytaert
committed
realm varchar(255) NOT NULL default '',

Dries Buytaert
committed
grant_view tinyint unsigned NOT NULL default '0',
grant_update tinyint unsigned NOT NULL default '0',
grant_delete tinyint unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (nid,gid,realm)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {node_revisions} (

Dries Buytaert
committed
nid int unsigned NOT NULL,
vid int unsigned NOT NULL,
uid int NOT NULL default '0',

Dries Buytaert
committed
title varchar(128) NOT NULL default '',
body longtext NOT NULL default '',
teaser longtext NOT NULL default '',
log longtext NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0',
format int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (vid),
KEY nid (nid),
KEY uid (uid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");

Neil Drumm
committed
db_query("CREATE TABLE {node_type} (
type varchar(32) NOT NULL,
name varchar(255) NOT NULL default '',
module varchar(255) NOT NULL,
description mediumtext NOT NULL,
help mediumtext NOT NULL,

Dries Buytaert
committed
has_title tinyint unsigned NOT NULL,

Neil Drumm
committed
title_label varchar(255) NOT NULL default '',

Dries Buytaert
committed
has_body tinyint unsigned NOT NULL,

Neil Drumm
committed
body_label varchar(255) NOT NULL default '',

Dries Buytaert
committed
min_word_count smallint unsigned NOT NULL,
custom tinyint NOT NULL DEFAULT '0',
modified tinyint NOT NULL DEFAULT '0',
locked tinyint NOT NULL DEFAULT '0',

Neil Drumm
committed
orig_type varchar(255) NOT NULL default '',
PRIMARY KEY (type)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");

Dries Buytaert
committed
db_query("CREATE TABLE {url_alias} (

Dries Buytaert
committed
pid int unsigned NOT NULL auto_increment,

Dries Buytaert
committed
src varchar(128) NOT NULL default '',
dst varchar(128) NOT NULL default '',
PRIMARY KEY (pid),
UNIQUE KEY dst (dst),
KEY src (src)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {permission} (

Dries Buytaert
committed
rid int unsigned NOT NULL default '0',

Dries Buytaert
committed
perm longtext,

Dries Buytaert
committed
tid int unsigned NOT NULL default '0',

Dries Buytaert
committed
KEY rid (rid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {role} (

Dries Buytaert
committed
rid int unsigned NOT NULL auto_increment,

Dries Buytaert
committed
name varchar(32) NOT NULL default '',
PRIMARY KEY (rid),
UNIQUE KEY name (name)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,

Dries Buytaert
committed
rid int unsigned NOT NULL,

Dries Buytaert
committed
PRIMARY KEY (module, delta, rid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {sessions} (

Dries Buytaert
committed
uid int unsigned NOT NULL,

Dries Buytaert
committed
sid varchar(32) NOT NULL default '',
hostname varchar(128) NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0',
cache int NOT NULL default '0',

Dries Buytaert
committed
session longtext,
KEY uid (uid),
PRIMARY KEY (sid),
KEY timestamp (timestamp)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {sequences} (
name varchar(255) NOT NULL default '',

Dries Buytaert
committed
id int unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (name)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {node_counter} (

Dries Buytaert
committed
nid int NOT NULL default '0',
totalcount bigint unsigned NOT NULL default '0',
daycount mediumint unsigned NOT NULL default '0',
timestamp int unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (nid),
KEY totalcount (totalcount),
KEY daycount (daycount),
KEY timestamp (timestamp)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {system} (
filename varchar(255) NOT NULL default '',
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',

Dries Buytaert
committed
status int NOT NULL default '0',
throttle tinyint DEFAULT '0' NOT NULL,
bootstrap int NOT NULL default '0',
schema_version smallint NOT NULL default -1,
weight int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (filename),
KEY (weight)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {term_data} (

Dries Buytaert
committed
tid int unsigned NOT NULL auto_increment,
vid int unsigned NOT NULL default '0',

Dries Buytaert
committed
name varchar(255) NOT NULL default '',
description longtext,

Dries Buytaert
committed
weight tinyint NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (tid),
KEY vid (vid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {term_hierarchy} (

Dries Buytaert
committed
tid int unsigned NOT NULL default '0',
parent int unsigned NOT NULL default '0',

Dries Buytaert
committed
KEY tid (tid),
KEY parent (parent),
PRIMARY KEY (tid, parent)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {term_node} (

Dries Buytaert
committed
nid int unsigned NOT NULL default '0',
tid int unsigned NOT NULL default '0',

Dries Buytaert
committed
KEY nid (nid),
KEY tid (tid),
PRIMARY KEY (tid,nid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {term_relation} (

Dries Buytaert
committed
tid1 int unsigned NOT NULL default '0',
tid2 int unsigned NOT NULL default '0',

Dries Buytaert
committed
KEY tid1 (tid1),
KEY tid2 (tid2)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {term_synonym} (

Dries Buytaert
committed
tid int unsigned NOT NULL default '0',

Dries Buytaert
committed
name varchar(255) NOT NULL default '',
KEY tid (tid),
KEY name (name(3))
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {users} (

Dries Buytaert
committed
uid int unsigned NOT NULL default '0',

Dries Buytaert
committed
name varchar(60) NOT NULL default '',
pass varchar(32) NOT NULL default '',
mail varchar(64) default '',

Dries Buytaert
committed
mode tinyint NOT NULL default '0',
sort tinyint default '0',
threshold tinyint default '0',

Dries Buytaert
committed
theme varchar(255) NOT NULL default '',
signature varchar(255) NOT NULL default '',

Dries Buytaert
committed
created int NOT NULL default '0',
access int NOT NULL default '0',
login int NOT NULL default '0',
status tinyint NOT NULL default '0',

Dries Buytaert
committed
timezone varchar(8) default NULL,
language varchar(12) NOT NULL default '',
picture varchar(255) NOT NULL DEFAULT '',
init varchar(64) default '',
data longtext,
PRIMARY KEY (uid),
UNIQUE KEY name (name),
KEY access (access)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {users_roles} (

Dries Buytaert
committed
uid int unsigned NOT NULL default '0',
rid int unsigned NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (uid, rid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {variable} (
name varchar(48) NOT NULL default '',
value longtext NOT NULL,
PRIMARY KEY (name)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {vocabulary} (

Dries Buytaert
committed
vid int unsigned NOT NULL auto_increment,

Dries Buytaert
committed
name varchar(255) NOT NULL default '',
description longtext,
help varchar(255) NOT NULL default '',

Dries Buytaert
committed
relations tinyint unsigned NOT NULL default '0',
hierarchy tinyint unsigned NOT NULL default '0',
multiple tinyint unsigned NOT NULL default '0',
required tinyint unsigned NOT NULL default '0',
tags tinyint unsigned NOT NULL default '0',

Dries Buytaert
committed
module varchar(255) NOT NULL default '',

Dries Buytaert
committed
weight tinyint NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (vid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {vocabulary_node_types} (

Dries Buytaert
committed
vid int unsigned NOT NULL DEFAULT '0',

Dries Buytaert
committed
type varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (vid, type)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
db_query("CREATE TABLE {watchdog} (

Dries Buytaert
committed
wid int NOT NULL auto_increment,
uid int NOT NULL default '0',

Dries Buytaert
committed
type varchar(16) NOT NULL default '',
message longtext NOT NULL,

Dries Buytaert
committed
severity tinyint unsigned NOT NULL default '0',

Dries Buytaert
committed
link varchar(255) NOT NULL default '',
location varchar(128) NOT NULL default '',
referer varchar(128) NOT NULL default '',
hostname varchar(128) NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0',

Dries Buytaert
committed
PRIMARY KEY (wid)
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
break;
case 'pgsql':
/* create unsigned types */
db_query("CREATE DOMAIN int_unsigned integer CHECK (VALUE >= 0)");
db_query("CREATE DOMAIN smallint_unsigned smallint CHECK (VALUE >= 0)");
db_query("CREATE DOMAIN bigint_unsigned bigint CHECK (VALUE >= 0)");
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
db_query("CREATE TABLE {access} (
aid serial,
mask varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
status smallint NOT NULL default '0',
PRIMARY KEY (aid)
)");
db_query("CREATE TABLE {authmap} (
aid serial CHECK (aid >= 0),
uid int NOT NULL default '0',
authname varchar(128) NOT NULL default '',
module varchar(128) NOT NULL default '',
PRIMARY KEY (aid),
UNIQUE (authname)
)");
db_query("CREATE TABLE {blocks} (
module varchar(64) DEFAULT '' NOT NULL,
delta varchar(32) NOT NULL default '0',
theme varchar(255) NOT NULL default '',
status smallint DEFAULT '0' NOT NULL,
weight smallint DEFAULT '0' NOT NULL,
region varchar(64) DEFAULT 'left' NOT NULL,
custom smallint DEFAULT '0' NOT NULL,
throttle smallint DEFAULT '0' NOT NULL,
visibility smallint DEFAULT '0' NOT NULL,
pages text DEFAULT '' NOT NULL
)");
db_query("CREATE TABLE {boxes} (
bid serial,
title varchar(64) NOT NULL default '',
body text,
info varchar(128) NOT NULL default '',
format smallint NOT NULL default '0',
PRIMARY KEY (bid),
UNIQUE (info)
)");
db_query("CREATE TABLE {cache} (
cid varchar(255) NOT NULL default '',
data bytea,
expire int NOT NULL default '0',
created int NOT NULL default '0',
headers text,
PRIMARY KEY (cid)
)");
db_query("CREATE INDEX {cache}_expire_idx ON {cache} (expire)");
db_query("CREATE TABLE {comments} (
cid serial,
pid int NOT NULL default '0',
nid int NOT NULL default '0',
uid int NOT NULL default '0',
subject varchar(64) NOT NULL default '',
comment text NOT NULL,
hostname varchar(128) NOT NULL default '',
timestamp int NOT NULL default '0',
score int NOT NULL default '0',
status smallint_unsigned NOT NULL default '0',
format smallint NOT NULL default '0',
thread varchar(255) NOT NULL,
users text,
name varchar(60) default NULL,
mail varchar(64) default NULL,
homepage varchar(255) default NULL,
PRIMARY KEY (cid)
)");
db_query("CREATE INDEX {comments}_nid_idx ON {comments} (nid)");
db_query("CREATE TABLE {node_comment_statistics} (
nid serial CHECK (nid >= 0),
last_comment_timestamp int NOT NULL default '0',
last_comment_name varchar(60) default NULL,
last_comment_uid int NOT NULL default '0',
comment_count int_unsigned NOT NULL default '0',
PRIMARY KEY (nid)
)");
db_query("CREATE INDEX {node_comment_statistics}_node_comment_timestamp_idx ON {node_comment_statistics} (last_comment_timestamp)");
db_query("CREATE TABLE {files} (
fid int_unsigned NOT NULL default 0,
nid int_unsigned NOT NULL default 0,
filename varchar(255) NOT NULL default '',
filepath varchar(255) NOT NULL default '',
filemime varchar(255) NOT NULL default '',
filesize int_unsigned NOT NULL default 0,
PRIMARY KEY (fid)
)");

Dries Buytaert
committed
db_query("CREATE TABLE {file_revisions} (
fid int_unsigned NOT NULL default 0,
vid int_unsigned NOT NULL default 0,
description varchar(255) NOT NULL default '',
list smallint_unsigned NOT NULL default 0,
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
PRIMARY KEY (fid, vid)
)");
db_query("CREATE TABLE {filter_formats} (
format serial,
name varchar(255) NOT NULL default '',
roles varchar(255) NOT NULL default '',
cache smallint NOT NULL default '0',
PRIMARY KEY (format),
UNIQUE (name)
)");
db_query("CREATE TABLE {filters} (
format int NOT NULL default '0',
module varchar(64) NOT NULL default '',
delta smallint DEFAULT '0' NOT NULL,
weight smallint DEFAULT '0' NOT NULL
)");
db_query("CREATE INDEX {filters}_weight_idx ON {filters} (weight)");
db_query("CREATE TABLE {flood} (
event varchar(64) NOT NULL default '',
hostname varchar(128) NOT NULL default '',
timestamp int NOT NULL default '0'
)");
db_query("CREATE TABLE {history} (
uid int NOT NULL default '0',
nid int NOT NULL default '0',
timestamp int NOT NULL default '0',
PRIMARY KEY (uid,nid)
)");
db_query("CREATE TABLE {menu} (
mid serial CHECK (mid >= 0),
pid int_unsigned NOT NULL default '0',
path varchar(255) NOT NULL default '',
title varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',
weight smallint NOT NULL default '0',
type int_unsigned NOT NULL default '0',
PRIMARY KEY (mid)
)");
db_query("ALTER SEQUENCE {menu}_mid_seq MINVALUE 2 RESTART 2");
db_query("CREATE TABLE {node} (
nid serial CHECK (nid >= 0),
vid int_unsigned NOT NULL default '0',
type varchar(32) NOT NULL default '',
title varchar(128) NOT NULL default '',
uid int NOT NULL default '0',
status int NOT NULL default '1',
created int NOT NULL default '0',
changed int NOT NULL default '0',
comment int NOT NULL default '0',
promote int NOT NULL default '0',
moderate int NOT NULL default '0',
sticky int NOT NULL default '0',
PRIMARY KEY (nid, vid),
UNIQUE (vid)
)");
db_query("CREATE INDEX {node}_node_type_idx ON {node} (substr (type, 1, 4))");
db_query("CREATE INDEX {node}_node_title_type_idx ON {node} (title, substr(type, 1, 4))");
db_query("CREATE INDEX {node}_status_idx ON {node} (status)");
db_query("CREATE INDEX {node}_uid_idx ON {node} (uid)");
db_query("CREATE INDEX {node}_node_moderate_idx ON {node} (moderate)");
db_query("CREATE INDEX {node}_node_promote_status_idx ON {node} (promote, status)");
db_query("CREATE INDEX {node}_node_created_idx ON {node} (created)");
db_query("CREATE INDEX {node}_node_changed_idx ON {node} (changed)");
db_query("CREATE INDEX {node}_node_status_type_idx ON {node} (status, type, nid)");
db_query("CREATE INDEX {node}_nid_idx ON {node} (nid)");
db_query("CREATE TABLE {node_access} (
nid int_unsigned NOT NULL default '0',
gid int_unsigned NOT NULL default '0',
realm varchar(255) NOT NULL default '',
grant_view smallint_unsigned NOT NULL default '0',
grant_update smallint_unsigned NOT NULL default '0',
grant_delete smallint_unsigned NOT NULL default '0',
PRIMARY KEY (nid,gid,realm)
)");
db_query("CREATE TABLE {node_revisions} (
nid int_unsigned NOT NULL,
vid serial CHECK (vid >= 0),
uid int NOT NULL default '0',
title varchar(128) NOT NULL default '',
body text NOT NULL default '',
teaser text NOT NULL default '',
log text NOT NULL default '',
timestamp int NOT NULL default '0',
format int NOT NULL default '0',
PRIMARY KEY (vid)
)");
db_query("CREATE INDEX {node_revisions}_nid_idx ON {node_revisions} (nid)");
db_query("CREATE INDEX {node_revisions}_uid_idx ON {node_revisions} (uid)");
db_query("CREATE TABLE {node_type} (
type varchar(32) NOT NULL,
name varchar(255) NOT NULL default '',
module varchar(255) NOT NULL,
description text NOT NULL,
help text NOT NULL,
has_title smallint_unsigned NOT NULL,
title_label varchar(255) NOT NULL default '',
has_body smallint_unsigned NOT NULL,
body_label varchar(255) NOT NULL default '',
min_word_count smallint_unsigned NOT NULL,
custom smallint NOT NULL DEFAULT '0',
modified smallint NOT NULL DEFAULT '0',
locked smallint NOT NULL DEFAULT '0',
orig_type varchar(255) NOT NULL default '',
PRIMARY KEY (type)
)");
db_query("CREATE TABLE {url_alias} (
pid serial CHECK (pid >= 0),
src varchar(128) NOT NULL default '',
dst varchar(128) NOT NULL default '',
PRIMARY KEY (pid),
UNIQUE (dst)
)");
db_query("CREATE INDEX {url_alias}_src_idx ON {url_alias} (src)");
db_query("CREATE TABLE {permission} (
rid int_unsigned NOT NULL default '0',
perm text,
tid int_unsigned NOT NULL default '0'
)");
db_query("CREATE INDEX {permission}_rid_idx ON {permission} (rid)");
db_query("CREATE TABLE {role} (
rid serial CHECK (rid >= 0),
name varchar(32) NOT NULL default '',
PRIMARY KEY (rid),
UNIQUE (name)
)");
db_query("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,
rid int_unsigned NOT NULL,
PRIMARY KEY (module, delta, rid)
)");
db_query("CREATE TABLE {sessions} (
uid int_unsigned NOT NULL,
sid varchar(32) NOT NULL default '',
hostname varchar(128) NOT NULL default '',
timestamp int NOT NULL default '0',
cache int NOT NULL default '0',
session text,
PRIMARY KEY (sid)
)");
db_query("CREATE INDEX {sessions}_uid_idx ON {sessions} (uid)");
db_query("CREATE INDEX {sessions}_timestamp_idx ON {sessions} (timestamp)");
/* Only used for MySQL
db_query("CREATE TABLE {sequences} (
name varchar(255) NOT NULL default '',
id int_unsigned NOT NULL default '0',
PRIMARY KEY (name)
)"); */
db_query("CREATE TABLE {node_counter} (
nid int NOT NULL default '0',
totalcount bigint_unsigned NOT NULL default '0',
daycount int_unsigned NOT NULL default '0',
timestamp int_unsigned NOT NULL default '0',
PRIMARY KEY (nid)
)");
db_query("CREATE INDEX {node_counter}_totalcount_idx ON {node_counter} (totalcount)");
db_query("CREATE INDEX {node_counter}_daycount_idx ON {node_counter} (daycount)");
db_query("CREATE INDEX {node_counter}_timestamp_idx ON {node_counter} (timestamp)");
db_query("CREATE TABLE {system} (
filename varchar(255) NOT NULL default '',
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',
status int NOT NULL default '0',
throttle smallint DEFAULT '0' NOT NULL,
bootstrap int NOT NULL default '0',
schema_version smallint NOT NULL default -1,
weight int NOT NULL default '0',
PRIMARY KEY (filename)
)");
db_query("CREATE INDEX {system}_weight_idx ON {system} (weight)");
db_query("CREATE TABLE {term_data} (
tid serial CHECK (tid >= 0),
vid int_unsigned NOT NULL default '0',
name varchar(255) NOT NULL default '',
description text,
weight smallint NOT NULL default '0',
PRIMARY KEY (tid)
)");
db_query("CREATE INDEX {term_data}_vid_idx ON {term_data} (vid)");
db_query("CREATE TABLE {term_hierarchy} (
tid int_unsigned NOT NULL default '0',
parent int_unsigned NOT NULL default '0',
PRIMARY KEY (tid, parent)
)");
db_query("CREATE INDEX {term_hierarchy}_tid_idx ON {term_hierarchy} (tid)");
db_query("CREATE INDEX {term_hierarchy}_parent_idx ON {term_hierarchy} (parent)");
db_query("CREATE TABLE {term_node} (
nid int_unsigned NOT NULL default '0',
tid int_unsigned NOT NULL default '0',
PRIMARY KEY (tid,nid)
)");
db_query("CREATE INDEX {term_node}_nid_idx ON {term_node} (nid)");
db_query("CREATE INDEX {term_node}_tid_idx ON {term_node} (tid)");
db_query("CREATE TABLE {term_relation} (
tid1 int_unsigned NOT NULL default '0',
tid2 int_unsigned NOT NULL default '0'
)");
db_query("CREATE INDEX {term_relation}_tid1_idx ON {term_relation} (tid1)");
db_query("CREATE INDEX {term_relation}_tid2_idx ON {term_relation} (tid2)");
db_query("CREATE TABLE {term_synonym} (
tid int_unsigned NOT NULL default '0',
name varchar(255) NOT NULL default ''
)");
db_query("CREATE INDEX {term_synonym}_tid_idx ON {term_synonym} (tid)");
db_query("CREATE INDEX {term_synonym}_name_idx ON {term_synonym} (substr(name, 1, 3))");
db_query("CREATE TABLE {users} (
uid serial CHECK (uid >= 0),
name varchar(60) NOT NULL default '',
pass varchar(32) NOT NULL default '',
mail varchar(64) default '',
mode smallint NOT NULL default '0',
sort smallint default '0',
threshold smallint default '0',
theme varchar(255) NOT NULL default '',
signature varchar(255) NOT NULL default '',
created int NOT NULL default '0',
access int NOT NULL default '0',
login int NOT NULL default '0',
status smallint NOT NULL default '0',
timezone varchar(8) default NULL,
language varchar(12) NOT NULL default '',
picture varchar(255) NOT NULL DEFAULT '',
init varchar(64) default '',
data text,
PRIMARY KEY (uid),
UNIQUE (name)
)");
db_query("CREATE INDEX {users}_access_idx ON {users} (access)");
db_query("CREATE TABLE {users_roles} (
uid int_unsigned NOT NULL default '0',
rid int_unsigned NOT NULL default '0',
PRIMARY KEY (uid, rid)
)");
db_query("CREATE TABLE {variable} (
name varchar(48) NOT NULL default '',
value text NOT NULL,
PRIMARY KEY (name)
)");
db_query("CREATE TABLE {vocabulary} (
vid serial CHECK (vid >= 0),
name varchar(255) NOT NULL default '',
description text,
help varchar(255) NOT NULL default '',
relations smallint_unsigned NOT NULL default '0',
hierarchy smallint_unsigned NOT NULL default '0',
multiple smallint_unsigned NOT NULL default '0',
required smallint_unsigned NOT NULL default '0',
tags smallint_unsigned NOT NULL default '0',
module varchar(255) NOT NULL default '',
weight smallint NOT NULL default '0',
PRIMARY KEY (vid)
)");
db_query("CREATE TABLE {vocabulary_node_types} (
vid int_unsigned NOT NULL DEFAULT '0',
type varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (vid, type)
)");
db_query("CREATE TABLE {watchdog} (
wid serial,
uid int NOT NULL default '0',
type varchar(16) NOT NULL default '',
message text NOT NULL,
severity smallint_unsigned NOT NULL default '0',
link varchar(255) NOT NULL default '',
location varchar(128) NOT NULL default '',
referer varchar(128) NOT NULL default '',
hostname varchar(128) NOT NULL default '',
timestamp int NOT NULL default '0',
PRIMARY KEY (wid)
)");
break;

Dries Buytaert
committed
}

Dries Buytaert
committed
db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0, 0)");
db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0, 0)");
db_query("INSERT INTO {users} (uid,name,mail) VALUES(0,'','')");
db_query("INSERT INTO {role} (name) VALUES ('anonymous user')");
db_query("INSERT INTO {role} (name) VALUES ('authenticated user')");
db_query("INSERT INTO {permission} VALUES (1,'access content',0)");
db_query("INSERT INTO {permission} VALUES (2,'access comments, access content, post comments, post comments without approval',0)");
db_query("INSERT INTO {variable} (name,value) VALUES('theme_default', 's:10:\"bluemarine\";')");
db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 0, 'bluemarine', 1)");
db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 1, 'bluemarine', 1)");
db_query("INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)");

Neil Drumm
committed
db_query("INSERT INTO {node_type} (type, name, module, description, help, has_title, title_label, has_body, body_label, min_word_count, custom, modified, locked, orig_type) VALUES ('page', 'page', 'node', 'If you want to add a static page, like a contact page or an about page, use a page.', '', 1, 'Title', 1, 'Body', 0, 1, 1, 0, 'page')");
db_query("INSERT INTO {node_type} (type, name, module, description, help, has_title, title_label, has_body, body_label, min_word_count, custom, modified, locked, orig_type) VALUES ('story', 'story', 'node', 'Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.', '', 1, 'Title', 1, 'Body', 0, 1, 1, 0, 'story')");

Dries Buytaert
committed
db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('Filtered HTML',',1,2,',1)");
db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('PHP code','',0)");
db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('Full HTML','',1)");
db_query("INSERT INTO {filters} VALUES (1,'filter',0,0)");
db_query("INSERT INTO {filters} VALUES (1,'filter',2,1)");
db_query("INSERT INTO {filters} VALUES (2,'filter',1,0)");
db_query("INSERT INTO {filters} VALUES (3,'filter',2,0)");
db_query("INSERT INTO {variable} (name,value) VALUES ('filter_html_1','i:1;')");
db_query("INSERT INTO {variable} (name, value) VALUES ('node_options_forum', '%s')", 'a:1:{i:0;s:6:"status";}');

Dries Buytaert
committed
db_query("INSERT INTO {menu} (pid, path, title, description, weight, type) VALUES (0, '', 'Primary links', '', 0, 115)");
db_query("INSERT INTO {variable} VALUES ('menu_primary_menu', 'i:2;')");
db_query("INSERT INTO {variable} VALUES ('menu_secondary_menu', 'i:2;')");
}
// Updates for core
function system_update_110() {
$ret = array();
// TODO: needs PGSQL version
if ($GLOBALS['db_type'] == 'mysql') {
/*
** Search
*/
$ret[] = update_sql('DROP TABLE {search_index}');
$ret[] = update_sql("CREATE TABLE {search_index} (
word varchar(50) NOT NULL default '',

Dries Buytaert
committed
sid int unsigned NOT NULL default '0',
type varchar(16) default NULL,

Dries Buytaert
committed
fromsid int unsigned NOT NULL default '0',
fromtype varchar(16) default NULL,

Dries Buytaert
committed
score int unsigned default NULL,
KEY sid (sid),
KEY fromsid (fromsid),
KEY word (word)
)");
$ret[] = update_sql("CREATE TABLE {search_total} (
word varchar(50) NOT NULL default '',

Dries Buytaert
committed
count int unsigned default NULL,
)");
/*
** Blocks
*/
$ret[] = update_sql('ALTER TABLE {blocks} DROP path');

Dries Buytaert
committed
$ret[] = update_sql('ALTER TABLE {blocks} ADD visibility tinyint NOT NULL');
$ret[] = update_sql('ALTER TABLE {blocks} ADD pages text NOT NULL');
elseif ($GLOBALS['db_type'] == 'pgsql') {
/*
** Search
*/
$ret[] = update_sql('DROP TABLE {search_index}');
$ret[] = update_sql("CREATE TABLE {search_index} (
word varchar(50) NOT NULL default '',
sid integer NOT NULL default '0',
type varchar(16) default NULL,
fromsid integer NOT NULL default '0',
fromtype varchar(16) default NULL,
score integer default NULL
)");
$ret[] = update_sql("CREATE INDEX {search_index}_sid_idx on {search_index}(sid)");
$ret[] = update_sql("CREATE INDEX {search_index}_fromsid_idx on {search_index}(fromsid)");
$ret[] = update_sql("CREATE INDEX {search_index}_word_idx on {search_index}(word)");
$ret[] = update_sql("CREATE TABLE {search_total} (
word varchar(50) NOT NULL default '' PRIMARY KEY,
count integer default NULL
)");
/*
** Blocks
*/
// Postgres can only drop columns since 7.4
#$ret[] = update_sql('ALTER TABLE {blocks} DROP path');
$ret[] = update_sql('ALTER TABLE {blocks} ADD visibility smallint');
$ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN visibility set default 0");
$ret[] = update_sql('UPDATE {blocks} SET visibility = 0');
$ret[] = update_sql('ALTER TABLE {blocks} ALTER COLUMN visibility SET NOT NULL');
$ret[] = update_sql('ALTER TABLE {blocks} ADD pages text');

Dries Buytaert
committed
$ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN pages set default ''");
$ret[] = update_sql("UPDATE {blocks} SET pages = ''");
$ret[] = update_sql('ALTER TABLE {blocks} ALTER COLUMN pages SET NOT NULL');
}
$ret[] = update_sql("DELETE FROM {variable} WHERE name = 'node_cron_last'");

Dries Buytaert
committed
$ret[] = update_sql('UPDATE {blocks} SET status = 1, custom = 2 WHERE status = 0 AND custom = 1');
return $ret;
}

Dries Buytaert
committed
function system_update_111() {
$ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'throttle_%'");
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql('ALTER TABLE {sessions} ADD PRIMARY KEY sid (sid)');
}
elseif ($GLOBALS['db_type'] == 'pgsql') {
$ret[] = update_sql('ALTER TABLE {sessions} ADD UNIQUE(sid)');
}
function system_update_112() {
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("CREATE TABLE {flood} (
event varchar(64) NOT NULL default '',
hostname varchar(128) NOT NULL default '',

Dries Buytaert
committed
timestamp int NOT NULL default '0'
);");
}
elseif ($GLOBALS['db_type'] == 'pgsql') {
$ret[] = update_sql("CREATE TABLE {flood} (
event varchar(64) NOT NULL default '',
hostname varchar(128) NOT NULL default '',
timestamp integer NOT NULL default 0
);");
}
function system_update_113() {

Dries Buytaert
committed
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {

Dries Buytaert
committed
$ret[] = update_sql('ALTER TABLE {accesslog} ADD aid int NOT NULL auto_increment, ADD PRIMARY KEY (aid)');

Dries Buytaert
committed
}
elseif ($GLOBALS['db_type'] == 'pgsql') {
$ret[] = update_sql("SELECT * INTO TEMPORARY {accesslog}_t FROM {accesslog}");
$ret[] = update_sql("DROP TABLE {accesslog}");
$ret[] = update_sql("CREATE TABLE {accesslog} (

Dries Buytaert
committed
aid serial,
url varchar(255) default NULL,
hostname varchar(128) default NULL,
uid integer default '0',
timestamp integer NOT NULL default '0'
)");
$ret[] = update_sql("INSERT INTO {accesslog} (title, path, url, hostname, uid, timestamp) SELECT title, path, url, hostname, uid, timestamp FROM {accesslog}_t");
$ret[] = update_sql("DROP TABLE {accesslog}_t");
$ret[] = update_sql("CREATE INDEX {accesslog}_timestamp_idx ON {accesslog} (timestamp);");
}
// Flush the menu cache:
cache_clear_all('menu:', TRUE);
return $ret;
}
function system_update_114() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {