diff options
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 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' -- |