summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-07 18:25:09 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-07 18:25:09 +0000
commitbea3dbb77574cb5b4274c318b01443d640d5c87b (patch)
tree2d339c9a52a0dc6f5ce275de2c355e0cbe7d3a92 /database/database.pgsql
parent71eac6dddc79d5b2ad3567969743269534bfc9d6 (diff)
downloadbrdo-bea3dbb77574cb5b4274c318b01443d640d5c87b.tar.gz
brdo-bea3dbb77574cb5b4274c318b01443d640d5c87b.tar.bz2
- Patch 0185 by Jeremy: made it possible to automatically disable modules when
under heave load.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql5
1 files changed, 3 insertions, 2 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index b6a22be9d..2ae034d93 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -423,6 +423,7 @@ CREATE TABLE system (
type varchar(255) NOT NULL default '',
description varchar(255) NOT NULL default '',
status integer NOT NULL default '0',
+ throttle smallint NOT NULL default '0',
bootstrap integer NOT NULL default '0',
PRIMARY KEY (filename)
);
@@ -568,10 +569,10 @@ INSERT INTO system VALUES ('modules/node.module','node','module','',1,0);
INSERT INTO system VALUES ('modules/page.module','page','module','',1,0);
INSERT INTO system VALUES ('modules/story.module','story','module','',1,0);
INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0);
-INSERT INTO system VALUES ('themes/marvin/marvin.theme','marvin','theme','Internet explorer, Netscape, Opera',1,0);
+INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0);
INSERT INTO variable(name,value) VALUES('update_start', 's:10:"2003-10-27";');
-INSERT INTO variable(name,value) VALUES('theme_default','s:6:"marvin";');
+INSERT INTO variable(name,value) VALUES('theme_default','s:9:"xtemplate";');
INSERT INTO users(uid,name,mail,rid) VALUES(0,'','', '1');
INSERT INTO blocks(module,delta,status) VALUES('user', '0', '1');