Description de la table
Table contenant la liste des sujets qui sont surveillés et par quel membre.
CREATE TABLE phpbb_topics_watch ( topic_id int(10) unsigned NOT NULL DEFAULT '0', user_id int(10) unsigned NOT NULL DEFAULT '0', notify_status tinyint(1) unsigned NOT NULL DEFAULT '0', KEY topic_id (topic_id), KEY user_id (user_id), KEY notify_stat (notify_status) ) CHARSET=utf8 COLLATE=utf8_bin;