diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-28 20:03:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-28 20:03:00 +0000 |
commit | 733d286b8991ffa6c0b13c20255c5806913e869b (patch) | |
tree | 40b93497e8c26d4b71599f78e4025197696ddf0b /database/database.pgsql | |
parent | fa5aca1ef79e318793fe9cc13befabe8b01e3b36 (diff) | |
download | brdo-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.pgsql | 3 |
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' ); -- |