diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-01 06:46:55 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-01 06:46:55 +0000 |
commit | e5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0 (patch) | |
tree | 42a05e1a99c3dd54b80e57f77f9500a9a9b0015d /database/database.pgsql | |
parent | 882c3f6d2d6d82513b94cf6b719e01e803a33cf1 (diff) | |
download | brdo-e5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0.tar.gz brdo-e5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0.tar.bz2 |
- Fixed critical bug #1788: cloud module pings too much. Modified patch by
Kjartan.
This update requires some database changes so make sure to run update.php.
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 c2d2f0969..e0502fc88 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -378,7 +378,8 @@ CREATE TABLE site ( name varchar(128) NOT NULL default '', link varchar(255) NOT NULL default '', size text NOT NULL default '', - timestamp integer NOT NULL default '0', + changed integer NOT NULL default '0', + checked integer NOT NULL default '0', feed varchar(255) NOT NULL default '', refresh integer NOT NULL default '0', threshold integer NOT NULL default '0', |