Your IP : 216.73.216.40


Current Path : /var/www/html/ajay/phpwebsite-1.8.x/mod/rss/boost/
Upload File :
Current File : /var/www/html/ajay/phpwebsite-1.8.x/mod/rss/boost/install.sql

-- @author Matthew McNaney <mcnaney at gmail dot com>
-- @version $Id$

CREATE TABLE rss_channel (
id INT NOT NULL default 0,
module varchar(40) NOT NULL,
title varchar(100) NOT NULL,
description text NULL,
pub_date int NOT NULL default 0,
ttl smallint NOT NULL default 0,
image_id int NOT NULL default 0,
active smallint NOT NULL default 1,
PRIMARY KEY ( id )
);


CREATE TABLE rss_feeds (
  id int NOT NULL default 0,
  title varchar(100) NOT NULL,
  address varchar(255) NOT NULL,
  display smallint NOT NULL default 0,
  refresh_time smallint NOT NULL default 0,
  item_limit smallint NOT NULL default 0,
  PRIMARY KEY  (id)
);