Description de la table
Table contenant la liste des membres qui ont posté un sujet (utilisé notamment sur la page viewforum).
CREATE TABLE phpbb_topics_posted ( user_id int(10) unsigned NOT NULL DEFAULT '0', topic_id int(10) unsigned NOT NULL DEFAULT '0', topic_posted tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (user_id,topic_id) ) CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2, 1, 1);