RSS Import

From IceBB Wiki

Jump to: navigation, search

IceBB needs the ability to import RSS feeds into a forum.

Database Schema

NOT FINAL. DO NOT IMPLEMENT YET.

CREATE TABLE icebb_rss_imports (
  import_id int(11) NOT NULL auto_increment,
  import_url varchar(255) NOT NULL default '',
  forum_id int(11) NOT NULL,
  import_show_link boolean NOT NULL,
  import_last_time int(16) NOT NULL
  PRIMARY KEY (import_id)
);
CREATE TABLE icebb_rss_imported (
  imported_guid varchar(32) NOT NULL,
  topic_id int(11) NOT NULL default '',
  import_id int(11) NOT NULL auto_increment
);