From b2597e0badc399bad44890f1d9f40be4088c23f2 Mon Sep 17 00:00:00 2001
From: mjollnir_ <mjollnir_>
Date: Tue, 18 Jan 2005 21:58:28 +0000
Subject: [PATCH] Initial support for postgres for rss client block table

---
 blocks/rss_client/db/postgres7.sql | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/blocks/rss_client/db/postgres7.sql b/blocks/rss_client/db/postgres7.sql
index e581e283b4..5f57a278b9 100644
--- a/blocks/rss_client/db/postgres7.sql
+++ b/blocks/rss_client/db/postgres7.sql
@@ -9,4 +9,10 @@
 #
 
 CREATE TABLE prefix_block_rss_client (
+ id SERIAL PRIMARY KEY,
+ userid INTEGER NOT NULL default '0',
+ title varchar(64) NOT NULL default '',
+ description varchar(128) NOT NULL default '',
+ url varchar(255) NOT NULL default '',
+ type char(1) NOT NULL default 'R'
 );
-- 
2.39.5