summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-28 20:03:00 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-28 20:03:00 +0000
commit733d286b8991ffa6c0b13c20255c5806913e869b (patch)
tree40b93497e8c26d4b71599f78e4025197696ddf0b /database/database.pgsql
parentfa5aca1ef79e318793fe9cc13befabe8b01e3b36 (diff)
downloadbrdo-733d286b8991ffa6c0b13c20255c5806913e869b.tar.gz
brdo-733d286b8991ffa6c0b13c20255c5806913e869b.tar.bz2
- Made it possible to auto-throttle blocks. That is, blocks can be
configured to be disabled when under excessive load. Patch by Jeremy.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql3
1 files changed, 2 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index cd77a2fa4..b6a22be9d 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -51,7 +51,8 @@ CREATE TABLE blocks (
weight smallint NOT NULL default '0',
region smallint NOT NULL default '0',
path varchar(255) NOT NULL default '',
- custom smallint NOT NULL default '0'
+ custom smallint NOT NULL default '0',
+ throttle smallint NOT NULL default '0'
);
--