Description de la table
Table contenant les raisons des rapports définies dans le panneau d’administration.
CREATE TABLE phpbb_reports_reasons ( reason_id smallint(4) unsigned NOT NULL AUTO_INCREMENT, reason_title varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', reason_description mediumtext COLLATE utf8_bin NOT NULL, reason_order smallint(4) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (reason_id) ) CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('warez', '{L_REPORT_WAREZ}', 1);
INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('spam', '{L_REPORT_SPAM}', 2);
INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('off_topic', '{L_REPORT_OFF_TOPIC}', 3);
INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('other', '{L_REPORT_OTHER}', 4);