summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-02-23 17:45:03 +0000
committerDries Buytaert <dries@buytaert.net>2004-02-23 17:45:03 +0000
commitbb82569cee12277e0f098b4829d0001d27f328f2 (patch)
tree6f4156740eb7ffb899591c8883c6180742bc17ae /database
parentd03a8acfb6fbe707db1be9508c9f3f7d2d1af922 (diff)
downloadbrdo-bb82569cee12277e0f098b4829d0001d27f328f2.tar.gz
brdo-bb82569cee12277e0f098b4829d0001d27f328f2.tar.bz2
- Patch 6012 by Adrian: syncs the PostgreSQL port with the current state of HEAD,
and adds a user notice to add the throttle and bootstrap columns to the system table manually, else update.php will not run. The message includes the SQL statements required for both MySQL and PostgreSQL.
Diffstat (limited to 'database')
-rw-r--r--database/database.pgsql10
1 files changed, 10 insertions, 0 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index 77646822f..12975aa29 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -167,6 +167,16 @@ CREATE TABLE feed (
);
--
+-- Table structure for table 'filters'
+--
+
+CREATE TABLE filters (
+ module varchar(64) NOT NULL default '',
+ weight smallint DEFAULT '0' NOT NULL,
+ PRIMARY KEY (weight)
+);
+
+--
-- Table structure for table 'forum'
--