+---------+------------------------+-----------------------------------------------------------+ | Column | Type | Modifiers | +---------+------------------------+-----------------------------------------------------------+ | sid | integer | not null default nextval('public.rsssites_sid_seq'::text) | | title | character varying(255) | not null | | url | character varying(255) | not null | | active | boolean | | | baseurl | character varying(255) | | +---------+------------------------+-----------------------------------------------------------+ Indexes: rsssites_pkey primary key btree (sid), rsssites_sid_key unique btree (sid) +--------+------------------------+-----------+ | Column | Type | Modifiers | +--------+------------------------+-----------+ | cid | integer | | | title | character varying(255) | not null | | url | character varying(255) | not null | +--------+------------------------+-----------+ Foreign Key constraints: rss_site FOREIGN KEY (cid) REFERENCES rsssites(sid) ON UPDATE CASCADE ON DELETE CASCADE