diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-16 18:46:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-16 18:46:48 +0000 |
commit | 4dafd85f54d45695a50d18152dda45cad1dfc397 (patch) | |
tree | c949be8fc6373589e829a0e206e500866865308e /database/database.pgsql | |
parent | 9bf33e5ac8afc192b32e5c5132407d2fd394cecd (diff) | |
download | brdo-4dafd85f54d45695a50d18152dda45cad1dfc397.tar.gz brdo-4dafd85f54d45695a50d18152dda45cad1dfc397.tar.bz2 |
- Adding the missing flood tables. Sorry.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index d5f11c30c..1ebd958d5 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -264,6 +264,16 @@ CREATE TABLE filters ( CREATE INDEX filters_module_idx ON filters(module); -- +-- Table structure for table 'flood' +-- + +CREATE TABLE flood ( + event varchar(64) NOT NULL default '', + hostname varchar(128) NOT NULL default '', + timestamp int(11) NOT NULL default '0' +); + +-- -- Table structure for table 'forum' -- |