https://github.com/CryptDB/cryptdb
Raw File
Tip revision: 7678bc98d3054f1418371779c6d1050cd1a88b2e authored by Raluca Ada Popa on 04 January 2014, 01:31:06 UTC
small changes to readme
Tip revision: 7678bc9
traceAnnot
SET NAMES 'utf8';
; SELECT VERSION() AS version; 
; SELECT @@session.sql_mode AS sql_mode; 
; SET SESSION sql_mode=',STRICT_ALL_TABLES,STRICT_TRANS_TABLES'; 
; DROP FUNCTION IF EXISTS groupaccess;
; CREATE FUNCTION groupaccess (auth_option_id mediumint(8), auth_role_id mediumint(8)) RETURNS bool RETURN ((auth_option_id = 14) OR (auth_role_id IN (1, 2, 4, 6, 10, 11, 12, 13, 14, 15, 17, 22, 23, 24))); 
; CREATE TABLE phpbb_attachments (  	attach_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	post_msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	in_message tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	is_orphan tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	physical_filename varchar(255) DEFAULT '' NOT NULL, 	real_filename varchar(255) DEFAULT '' NOT NULL, 	download_count mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	attach_comment text NOT NULL, 	extension varchar(100) DEFAULT '' NOT NULL, 	mimetype varchar(100) DEFAULT '' NOT NULL, 	filesize int(20) UNSIGNED DEFAULT '0' NOT NULL, 	filetime int(11) UNSIGNED DEFAULT '0' NOT NULL, 	thumbnail tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (attach_id), 	KEY filetime (filetime), 	KEY post_msg_id (post_msg_id), 	KEY topic_id (topic_id), 	KEY poster_id (poster_id), 	KEY is_orphan (is_orphan) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_acl_groups (  	group_id hasaccessto forum_id if groupaccess(auth_option_id, auth_role_id) mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id equals phpbb_forums.forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_option_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_setting tinyint(2) DEFAULT '0' NOT NULL, 	KEY group_id (group_id), 	KEY auth_opt_id (auth_option_id), 	KEY auth_role_id (auth_role_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_acl_options (  	auth_option_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	auth_option varchar(50) DEFAULT '' NOT NULL, 	is_global tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	is_local tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	founder_only tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (auth_option_id), 	UNIQUE auth_option (auth_option) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_acl_roles (  	role_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	role_name varchar(255) DEFAULT '' NOT NULL, 	role_description text NOT NULL, 	role_type varchar(10) DEFAULT '' NOT NULL, 	role_order smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (role_id), 	KEY role_type (role_type), 	KEY role_order (role_order) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_acl_roles_data (  	role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_option_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_setting tinyint(2) DEFAULT '0' NOT NULL, 	PRIMARY KEY (role_id, auth_option_id), 	KEY ath_op_id (auth_option_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_acl_users (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_option_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_role_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	auth_setting tinyint(2) DEFAULT '0' NOT NULL, 	KEY user_id (user_id), 	KEY auth_option_id (auth_option_id), 	KEY auth_role_id (auth_role_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_banlist (  	ban_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	ban_userid mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	ban_ip varchar(40) DEFAULT '' NOT NULL, 	ban_email varchar(100) DEFAULT '' NOT NULL, 	ban_start int(11) UNSIGNED DEFAULT '0' NOT NULL, 	ban_end int(11) UNSIGNED DEFAULT '0' NOT NULL, 	ban_exclude tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	ban_reason varchar(255) DEFAULT '' NOT NULL, 	ban_give_reason varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (ban_id), 	KEY ban_end (ban_end), 	KEY ban_user (ban_userid, ban_exclude), 	KEY ban_email (ban_email, ban_exclude), 	KEY ban_ip (ban_ip, ban_exclude) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_bbcodes (  	bbcode_id tinyint(3) DEFAULT '0' NOT NULL, 	bbcode_tag varchar(16) DEFAULT '' NOT NULL, 	bbcode_helpline varchar(255) DEFAULT '' NOT NULL, 	display_on_posting tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	bbcode_match text NOT NULL, 	bbcode_tpl mediumtext NOT NULL, 	first_pass_match mediumtext NOT NULL, 	first_pass_replace mediumtext NOT NULL, 	second_pass_match mediumtext NOT NULL, 	second_pass_replace mediumtext NOT NULL, 	PRIMARY KEY (bbcode_id), 	KEY display_on_post (display_on_posting) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_bookmarks (  	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (topic_id, user_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_bots (  	bot_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	bot_active tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	bot_name varchar(255) DEFAULT '' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	bot_agent varchar(255) DEFAULT '' NOT NULL, 	bot_ip varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (bot_id), 	KEY bot_active (bot_active) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_config (  	config_name varchar(255) DEFAULT '' NOT NULL, 	config_value varchar(255) DEFAULT '' NOT NULL, 	is_dynamic tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (config_name), 	KEY is_dynamic (is_dynamic) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_confirm (  	confirm_id char(32) DEFAULT '' NOT NULL, 	session_id char(32) DEFAULT '' NOT NULL, 	confirm_type tinyint(3) DEFAULT '0' NOT NULL, 	code varchar(8) DEFAULT '' NOT NULL, 	seed int(10) UNSIGNED DEFAULT '0' NOT NULL, 	attempts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (session_id, confirm_id), 	KEY confirm_type (confirm_type) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_disallow (  	disallow_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	disallow_username varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (disallow_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_drafts (  	draft_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	save_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	draft_subject varchar(255) DEFAULT '' NOT NULL, 	draft_message mediumtext NOT NULL, 	PRIMARY KEY (draft_id), 	KEY save_time (save_time) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_extensions (  	extension_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	extension varchar(100) DEFAULT '' NOT NULL, 	PRIMARY KEY (extension_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_extension_groups (  	group_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	group_name varchar(255) DEFAULT '' NOT NULL, 	cat_id tinyint(2) DEFAULT '0' NOT NULL, 	allow_group tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	download_mode tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	upload_icon varchar(255) DEFAULT '' NOT NULL, 	max_filesize int(20) UNSIGNED DEFAULT '0' NOT NULL, 	allowed_forums text NOT NULL, 	allow_in_pm tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (group_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_forums (  	forum_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	parent_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	left_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	right_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_parents mediumtext NOT NULL, 	forum_name encfor forum_id varchar(255) DEFAULT '' NOT NULL, 	forum_desc text NOT NULL, 	forum_desc_bitfield varchar(255) DEFAULT '' NOT NULL, 	forum_desc_options int(11) UNSIGNED DEFAULT '7' NOT NULL, 	forum_desc_uid varchar(8) DEFAULT '' NOT NULL, 	forum_link varchar(255) DEFAULT '' NOT NULL, 	forum_password varchar(40) DEFAULT '' NOT NULL, 	forum_style mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_image encfor forum_id varchar(255) DEFAULT '' NOT NULL, 	forum_rules text NOT NULL, 	forum_rules_link varchar(255) DEFAULT '' NOT NULL, 	forum_rules_bitfield varchar(255) DEFAULT '' NOT NULL, 	forum_rules_options int(11) UNSIGNED DEFAULT '7' NOT NULL, 	forum_rules_uid varchar(8) DEFAULT '' NOT NULL, 	forum_topics_per_page tinyint(4) DEFAULT '0' NOT NULL, 	forum_type tinyint(4) DEFAULT '0' NOT NULL, 	forum_status tinyint(4) DEFAULT '0' NOT NULL, 	forum_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_topics_real mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_last_poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_last_post_subject encfor forum_id det varchar(255) DEFAULT '' NOT NULL, 	forum_last_post_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	forum_last_poster_name varchar(255) DEFAULT '' NOT NULL, 	forum_last_poster_colour varchar(6) DEFAULT '' NOT NULL, 	forum_flags tinyint(4) DEFAULT '32' NOT NULL, 	forum_options int(20) UNSIGNED DEFAULT '0' NOT NULL, 	display_subforum_list tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_icons tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_prune tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	prune_next int(11) UNSIGNED DEFAULT '0' NOT NULL, 	prune_days mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	prune_viewed mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	prune_freq mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (forum_id), 	KEY left_right_id (left_id, right_id), 	KEY forum_lastpost_id (forum_last_post_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_forums_access (  	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	session_id char(32) DEFAULT '' NOT NULL, 	PRIMARY KEY (forum_id, user_id, session_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_forums_track (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	mark_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id, forum_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_forums_watch (  	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	notify_status tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	KEY forum_id (forum_id), 	KEY user_id (user_id), 	KEY notify_stat (notify_status) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_groups (  	group_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	group_type tinyint(4) DEFAULT '1' NOT NULL, 	group_founder_manage tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	group_skip_auth tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	group_name varchar(255) DEFAULT '' NOT NULL, 	group_desc text NOT NULL, 	group_desc_bitfield varchar(255) DEFAULT '' NOT NULL, 	group_desc_options int(11) UNSIGNED DEFAULT '7' NOT NULL, 	group_desc_uid varchar(8) DEFAULT '' NOT NULL, 	group_display tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	group_avatar varchar(255) DEFAULT '' NOT NULL, 	group_avatar_type tinyint(2) DEFAULT '0' NOT NULL, 	group_avatar_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	group_avatar_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	group_rank mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_colour varchar(6) DEFAULT '' NOT NULL, 	group_sig_chars mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_receive_pm tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	group_message_limit mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_max_recipients mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_legend tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	PRIMARY KEY (group_id), 	KEY group_legend_name (group_legend, group_name) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_icons (  	icons_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	icons_url varchar(255) DEFAULT '' NOT NULL, 	icons_width tinyint(4) DEFAULT '0' NOT NULL, 	icons_height tinyint(4) DEFAULT '0' NOT NULL, 	icons_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	PRIMARY KEY (icons_id), 	KEY display_on_posting (display_on_posting) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_lang (  	lang_id tinyint(4) NOT NULL auto_increment, 	lang_iso varchar(30) DEFAULT '' NOT NULL, 	lang_dir varchar(30) DEFAULT '' NOT NULL, 	lang_english_name varchar(100) DEFAULT '' NOT NULL, 	lang_local_name varchar(255) DEFAULT '' NOT NULL, 	lang_author varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (lang_id), 	KEY lang_iso (lang_iso) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_log (  	log_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	log_type tinyint(4) DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	reportee_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	log_ip varchar(40) DEFAULT '' NOT NULL, 	log_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	log_operation text NOT NULL, 	log_data mediumtext NOT NULL, 	PRIMARY KEY (log_id), 	KEY log_type (log_type), 	KEY forum_id (forum_id), 	KEY topic_id (topic_id), 	KEY reportee_id (reportee_id), 	KEY user_id (user_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_moderator_cache (  	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	username varchar(255) DEFAULT '' NOT NULL, 	group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_name varchar(255) DEFAULT '' NOT NULL, 	display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	KEY disp_idx (display_on_index), 	KEY forum_id (forum_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_modules (  	module_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	module_enabled tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	module_display tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	module_basename varchar(255) DEFAULT '' NOT NULL, 	module_class varchar(10) DEFAULT '' NOT NULL, 	parent_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	left_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	right_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	module_langname varchar(255) DEFAULT '' NOT NULL, 	module_mode varchar(255) DEFAULT '' NOT NULL, 	module_auth varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (module_id), 	KEY left_right_id (left_id, right_id), 	KEY module_enabled (module_enabled), 	KEY class_left_id (module_class, left_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_poll_options (  	poll_option_id tinyint(4) DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	poll_option_text text NOT NULL, 	poll_option_total mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	KEY poll_opt_id (poll_option_id), 	KEY topic_id (topic_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_poll_votes (  	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	poll_option_id tinyint(4) DEFAULT '0' NOT NULL, 	vote_user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	vote_user_ip varchar(40) DEFAULT '' NOT NULL, 	KEY topic_id (topic_id), 	KEY vote_user_id (vote_user_id), 	KEY vote_user_ip (vote_user_ip) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_posts (  	post_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id equals phpbb_acl_groups.forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	icon_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	poster_ip varchar(40) DEFAULT '' NOT NULL, 	post_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	post_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	post_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	enable_bbcode tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_smilies tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_magic_url tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_sig tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	post_username varchar(255) DEFAULT '' NOT NULL, 	post_subject encfor forum_id varchar(255) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci, 	post_text encfor forum_id mediumtext NOT NULL, 	post_checksum varchar(32) DEFAULT '' NOT NULL, 	post_attachment encfor forum_id tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	bbcode_bitfield varchar(255) DEFAULT '' NOT NULL, 	bbcode_uid varchar(8) DEFAULT '' NOT NULL, 	post_postcount tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	post_edit_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	post_edit_reason varchar(255) DEFAULT '' NOT NULL, 	post_edit_user mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	post_edit_count smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	post_edit_locked tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (post_id), 	KEY forum_id (forum_id), 	KEY topic_id (topic_id), 	KEY poster_ip (poster_ip), 	KEY poster_id (poster_id), 	KEY post_approved (post_approved), 	KEY post_username (post_username), 	KEY tid_post_time (topic_id, post_time) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_privmsgs (  	msg_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	root_level mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	author_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	icon_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	author_ip varchar(40) DEFAULT '' NOT NULL, 	message_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	enable_bbcode tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_smilies tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_magic_url tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	enable_sig tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	message_subject encfor msg_id varchar(255) DEFAULT '' NOT NULL, 	message_text encfor msg_id mediumtext NOT NULL, 	message_edit_reason varchar(255) DEFAULT '' NOT NULL, 	message_edit_user mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	message_attachment tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	bbcode_bitfield varchar(255) DEFAULT '' NOT NULL, 	bbcode_uid varchar(8) DEFAULT '' NOT NULL, 	message_edit_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	message_edit_count smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	to_address encfor msg_id text NOT NULL, 	bcc_address encfor msg_id text NOT NULL, 	message_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (msg_id), 	KEY author_ip (author_ip), 	KEY message_time (message_time), 	KEY author_id (author_id), 	KEY root_level (root_level) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_privmsgs_folder (  	folder_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	folder_name varchar(255) DEFAULT '' NOT NULL, 	pm_count mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (folder_id), 	KEY user_id (user_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_privmsgs_rules (  	rule_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_check mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_connection mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_string varchar(255) DEFAULT '' NOT NULL, 	rule_user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_action mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rule_folder_id int(11) DEFAULT '0' NOT NULL, 	PRIMARY KEY (rule_id), 	KEY user_id (user_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_privmsgs_to (  	msg_id equals phpbb_privmsgs.msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id hasaccessto msg_id equals usergroup.user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	author_id equals phpbb_users.user_id hasaccessto msg_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	pm_deleted tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	pm_new tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	pm_unread tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	pm_replied tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	pm_marked tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	pm_forwarded tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	folder_id int(11) DEFAULT '0' NOT NULL, 	KEY msg_id (msg_id), 	KEY author_id (author_id), 	KEY usr_flder_id (user_id, folder_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_profile_fields (  	field_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	field_name varchar(255) DEFAULT '' NOT NULL, 	field_type tinyint(4) DEFAULT '0' NOT NULL, 	field_ident varchar(20) DEFAULT '' NOT NULL, 	field_length varchar(20) DEFAULT '' NOT NULL, 	field_minlen varchar(255) DEFAULT '' NOT NULL, 	field_maxlen varchar(255) DEFAULT '' NOT NULL, 	field_novalue varchar(255) DEFAULT '' NOT NULL, 	field_default_value varchar(255) DEFAULT '' NOT NULL, 	field_validation varchar(20) DEFAULT '' NOT NULL, 	field_required tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_show_on_reg tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_show_on_vt tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_show_profile tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_hide tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_no_view tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_active tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	field_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (field_id), 	KEY fld_type (field_type), 	KEY fld_ordr (field_order) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_profile_fields_data (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_profile_fields_lang (  	field_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	lang_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	option_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	field_type tinyint(4) DEFAULT '0' NOT NULL, 	lang_value varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (field_id, lang_id, option_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_profile_lang (  	field_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	lang_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	lang_name varchar(255) DEFAULT '' NOT NULL, 	lang_explain text NOT NULL, 	lang_default_value varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (field_id, lang_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_ranks (  	rank_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	rank_title varchar(255) DEFAULT '' NOT NULL, 	rank_min mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	rank_special tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	rank_image varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (rank_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_reports (  	report_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	reason_id smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	pm_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_notify tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	report_closed tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	report_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	report_text mediumtext NOT NULL, 	PRIMARY KEY (report_id), 	KEY post_id (post_id), 	KEY pm_id (pm_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_reports_reasons (  	reason_id smallint(4) UNSIGNED NOT NULL auto_increment, 	reason_title varchar(255) DEFAULT '' NOT NULL, 	reason_description mediumtext NOT NULL, 	reason_order smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (reason_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_search_results (  	search_key varchar(32) DEFAULT '' NOT NULL, 	search_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	search_keywords mediumtext NOT NULL, 	search_authors mediumtext NOT NULL, 	PRIMARY KEY (search_key) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_search_wordlist (  	word_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	word_text varchar(255) DEFAULT '' NOT NULL, 	word_common tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	word_count mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (word_id), 	UNIQUE wrd_txt (word_text), 	KEY wrd_cnt (word_count) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_search_wordmatch (  	post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	word_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	title_match tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	UNIQUE unq_mtch (word_id, post_id, title_match), 	KEY word_id (word_id), 	KEY post_id (post_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_sessions (  	session_id char(32) DEFAULT '' NOT NULL, 	session_user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	session_forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	session_last_visit int(11) UNSIGNED DEFAULT '0' NOT NULL, 	session_start int(11) UNSIGNED DEFAULT '0' NOT NULL, 	session_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	session_ip varchar(40) DEFAULT '' NOT NULL, 	session_browser varchar(150) DEFAULT '' NOT NULL, 	session_forwarded_for varchar(255) DEFAULT '' NOT NULL, 	session_page varchar(255) DEFAULT '' NOT NULL, 	session_viewonline tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	session_autologin tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	session_admin tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (session_id), 	KEY session_time (session_time), 	KEY session_user_id (session_user_id), 	KEY session_fid (session_forum_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_sessions_keys (  	key_id char(32) DEFAULT '' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	last_ip varchar(40) DEFAULT '' NOT NULL, 	last_login int(11) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (key_id, user_id), 	KEY last_login (last_login) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_sitelist (  	site_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	site_ip varchar(40) DEFAULT '' NOT NULL, 	site_hostname varchar(255) DEFAULT '' NOT NULL, 	ip_exclude tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (site_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_smilies (  	smiley_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	code varchar(50) DEFAULT '' NOT NULL, 	emotion varchar(50) DEFAULT '' NOT NULL, 	smiley_url varchar(50) DEFAULT '' NOT NULL, 	smiley_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	smiley_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	smiley_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	PRIMARY KEY (smiley_id), 	KEY display_on_post (display_on_posting) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles (  	style_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	style_name varchar(255) DEFAULT '' NOT NULL, 	style_copyright varchar(255) DEFAULT '' NOT NULL, 	style_active tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	template_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	theme_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	imageset_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (style_id), 	UNIQUE style_name (style_name), 	KEY template_id (template_id), 	KEY theme_id (theme_id), 	KEY imageset_id (imageset_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles_template (  	template_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	template_name varchar(255) DEFAULT '' NOT NULL, 	template_copyright varchar(255) DEFAULT '' NOT NULL, 	template_path varchar(100) DEFAULT '' NOT NULL, 	bbcode_bitfield varchar(255) DEFAULT 'kNg=' NOT NULL, 	template_storedb tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	template_inherits_id int(4) UNSIGNED DEFAULT '0' NOT NULL, 	template_inherit_path varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (template_id), 	UNIQUE tmplte_nm (template_name) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles_template_data (  	template_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	template_filename varchar(100) DEFAULT '' NOT NULL, 	template_included text NOT NULL, 	template_mtime int(11) UNSIGNED DEFAULT '0' NOT NULL, 	template_data mediumtext NOT NULL, 	KEY tid (template_id), 	KEY tfn (template_filename) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles_theme (  	theme_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	theme_name varchar(255) DEFAULT '' NOT NULL, 	theme_copyright varchar(255) DEFAULT '' NOT NULL, 	theme_path varchar(100) DEFAULT '' NOT NULL, 	theme_storedb tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	theme_mtime int(11) UNSIGNED DEFAULT '0' NOT NULL, 	theme_data mediumtext NOT NULL, 	PRIMARY KEY (theme_id), 	UNIQUE theme_name (theme_name) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles_imageset (  	imageset_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	imageset_name varchar(255) DEFAULT '' NOT NULL, 	imageset_copyright varchar(255) DEFAULT '' NOT NULL, 	imageset_path varchar(100) DEFAULT '' NOT NULL, 	PRIMARY KEY (imageset_id), 	UNIQUE imgset_nm (imageset_name) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_styles_imageset_data (  	image_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	image_name varchar(200) DEFAULT '' NOT NULL, 	image_filename varchar(200) DEFAULT '' NOT NULL, 	image_lang varchar(30) DEFAULT '' NOT NULL, 	image_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	image_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	imageset_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (image_id), 	KEY i_d (imageset_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_topics (  	topic_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	icon_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_attachment tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	topic_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	topic_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	topic_title varchar(255) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci, 	topic_poster mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	topic_time_limit int(11) UNSIGNED DEFAULT '0' NOT NULL, 	topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_replies_real mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_status tinyint(3) DEFAULT '0' NOT NULL, 	topic_type tinyint(3) DEFAULT '0' NOT NULL, 	topic_first_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_first_poster_name varchar(255) DEFAULT '' NOT NULL, 	topic_first_poster_colour varchar(6) DEFAULT '' NOT NULL, 	topic_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_last_poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_last_poster_name varchar(255) DEFAULT '' NOT NULL, 	topic_last_poster_colour varchar(6) DEFAULT '' NOT NULL, 	topic_last_post_subject varchar(255) DEFAULT '' NOT NULL, 	topic_last_post_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	topic_last_view_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	topic_moved_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_bumped tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	topic_bumper mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	poll_title varchar(255) DEFAULT '' NOT NULL, 	poll_start int(11) UNSIGNED DEFAULT '0' NOT NULL, 	poll_length int(11) UNSIGNED DEFAULT '0' NOT NULL, 	poll_max_options tinyint(4) DEFAULT '1' NOT NULL, 	poll_last_vote int(11) UNSIGNED DEFAULT '0' NOT NULL, 	poll_vote_change tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (topic_id), 	KEY forum_id (forum_id), 	KEY forum_id_type (forum_id, topic_type), 	KEY last_post_time (topic_last_post_time), 	KEY topic_approved (topic_approved), 	KEY forum_appr_last (forum_id, topic_approved, topic_last_post_id), 	KEY fid_time_moved (forum_id, topic_last_post_time, topic_moved_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_topics_track (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	mark_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id, topic_id), 	KEY topic_id (topic_id), 	KEY forum_id (forum_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_topics_posted (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	topic_posted tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id, topic_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_topics_watch (  	topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	notify_status tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	KEY topic_id (topic_id), 	KEY user_id (user_id), 	KEY notify_stat (notify_status) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_user_group (  	group_id equals phpbb_acl_groups.group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_id equals phpbb_privmsgs_to.author_id hasaccessto group_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	group_leader tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	user_pending tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	KEY group_id (group_id), 	KEY user_id (user_id), 	KEY group_leader (group_leader) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_users (  	user_id equals phpbb_privmsgs_to.user_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	user_type tinyint(2) DEFAULT '0' NOT NULL, 	group_id mediumint(8) UNSIGNED DEFAULT '3' NOT NULL, 	user_permissions mediumtext NOT NULL, 	user_perm_from mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_ip varchar(40) DEFAULT '' NOT NULL, 	user_regdate int(11) UNSIGNED DEFAULT '0' NOT NULL, 	username varchar(255) DEFAULT '' NOT NULL, 	username_clean givespsswd user_id varchar(255) DEFAULT '' NOT NULL, 	user_password varchar(40) DEFAULT '' NOT NULL, 	user_passchg int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_pass_convert tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	user_email varchar(100) DEFAULT '' NOT NULL, 	user_email_hash bigint(20) DEFAULT '0' NOT NULL, 	user_birthday varchar(10) DEFAULT '' NOT NULL, 	user_lastvisit int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_lastmark int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_lastpost_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_lastpage varchar(200) DEFAULT '' NOT NULL, 	user_last_confirm_key varchar(10) DEFAULT '' NOT NULL, 	user_last_search int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_warnings tinyint(4) DEFAULT '0' NOT NULL, 	user_last_warning int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_login_attempts tinyint(4) DEFAULT '0' NOT NULL, 	user_inactive_reason tinyint(2) DEFAULT '0' NOT NULL, 	user_inactive_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_lang varchar(30) DEFAULT '' NOT NULL, 	user_timezone decimal(5,2) DEFAULT '0' NOT NULL, 	user_dst tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	user_dateformat varchar(30) DEFAULT 'd M Y H:i' NOT NULL, 	user_style mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_rank mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	user_colour varchar(6) DEFAULT '' NOT NULL, 	user_new_privmsg int(4) DEFAULT '0' NOT NULL, 	user_unread_privmsg int(4) DEFAULT '0' NOT NULL, 	user_last_privmsg int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_message_rules tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	user_full_folder int(11) DEFAULT '-3' NOT NULL, 	user_emailtime int(11) UNSIGNED DEFAULT '0' NOT NULL, 	user_topic_show_days smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	user_topic_sortby_type varchar(1) DEFAULT 't' NOT NULL, 	user_topic_sortby_dir varchar(1) DEFAULT 'd' NOT NULL, 	user_post_show_days smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	user_post_sortby_type varchar(1) DEFAULT 't' NOT NULL, 	user_post_sortby_dir varchar(1) DEFAULT 'a' NOT NULL, 	user_notify tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	user_notify_pm tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_notify_type tinyint(4) DEFAULT '0' NOT NULL, 	user_allow_pm tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_allow_viewonline tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_allow_viewemail tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_allow_massemail tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_options int(11) UNSIGNED DEFAULT '230271' NOT NULL, 	user_avatar varchar(255) DEFAULT '' NOT NULL, 	user_avatar_type tinyint(2) DEFAULT '0' NOT NULL, 	user_avatar_width smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	user_avatar_height smallint(4) UNSIGNED DEFAULT '0' NOT NULL, 	user_sig mediumtext NOT NULL, 	user_sig_bbcode_uid varchar(8) DEFAULT '' NOT NULL, 	user_sig_bbcode_bitfield varchar(255) DEFAULT '' NOT NULL, 	user_from varchar(100) DEFAULT '' NOT NULL, 	user_icq varchar(15) DEFAULT '' NOT NULL, 	user_aim varchar(255) DEFAULT '' NOT NULL, 	user_yim varchar(255) DEFAULT '' NOT NULL, 	user_msnm varchar(255) DEFAULT '' NOT NULL, 	user_jabber varchar(255) DEFAULT '' NOT NULL, 	user_website varchar(200) DEFAULT '' NOT NULL, 	user_occ text NOT NULL, 	user_interests text NOT NULL, 	user_actkey varchar(32) DEFAULT '' NOT NULL, 	user_newpasswd varchar(40) DEFAULT '' NOT NULL, 	user_form_salt varchar(32) DEFAULT '' NOT NULL, 	user_new tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, 	user_reminded tinyint(4) DEFAULT '0' NOT NULL, 	user_reminded_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id), 	KEY user_birthday (user_birthday), 	KEY user_email_hash (user_email_hash), 	KEY user_type (user_type), 	UNIQUE username_clean (username_clean) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_warnings (  	warning_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	log_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	warning_time int(11) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (warning_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_words (  	word_id mediumint(8) UNSIGNED NOT NULL auto_increment, 	word varchar(255) DEFAULT '' NOT NULL, 	replacement varchar(255) DEFAULT '' NOT NULL, 	PRIMARY KEY (word_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; CREATE TABLE phpbb_zebra (  	user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	zebra_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, 	friend tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	foe tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, 	PRIMARY KEY (user_id, zebra_id) ) CHARACTER SET `utf8` COLLATE `utf8_bin`
; INSERT INTO activeusers VALUES ('admin', 'letmein');
; INSERT INTO activeusers VALUES ('watashi', 'letmein');
; INSERT INTO activeusers VALUES ('anonymous', 'letmein');
; INSERT INTO activeusers VALUES ('atashi', 'letmein');
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('active_sessions', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_attachments', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_autologin', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_upload', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote_upload', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bbcode', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_birthdays', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bookmarks', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_emailreuse', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_forum_notify', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_mass_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_name_chars', 'USERNAME_CHARS_ANY') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_nocensors', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_attach', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_report', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_links', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_privmsg', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_quick_reply', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_bbcode', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_img', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_links', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_smilies', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_smilies', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_bbcode_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_flash_pm', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_img_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_method', 'db') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_smilies_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_filesize', '6144') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_gallery_path', 'images/avatars/gallery') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_height', '90') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_width', '90') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_height', '20') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_width', '20') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_path', 'images/avatars/upload') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_salt', 'phpbb_avatar') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_contact', 'contact@yourdomain.tld') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable_msg', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_dst', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email', 'address@yourdomain.tld') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_form', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig', 'Thanks, The Management') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_hide_emails', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_timezone', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('browser_check', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_interval', '10') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_type', 'd') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('cache_gc', '7200') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_plugin', 'phpbb_captcha_nogd') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_foreground_noise', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_x_grid', '25') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_y_grid', '25') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_wave', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_3d_noise', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_fonts', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('confirm_refresh', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_attachment_content', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_dnsbl', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('chg_passforce', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_domain', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name', 'phpbb3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path', '/') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_secure', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('database_gc', '604800') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('dbms_version', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat', 'D M d, Y g:i a') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_style', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_last_edited', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_order', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('edit_time', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('delete_time', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_check_mx', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_enable', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_function_name', 'mail') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_package_size', '50') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_confirm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_pm_icons', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_post_confirm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_enable', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_http_auth', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_post', '15') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_topic', '10') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_forums', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_forum', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topic', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_new', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_active', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_item_statistics', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('flood_interval', '15') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('force_server_vars', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_lifetime', '7200') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_mintime', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_sid_guests', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('forward_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('forwarded_for_check', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('full_folder_action', '2') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_max_word_len', '254') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_min_word_len', '4') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_common_thres', '5') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_load_upd', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_max_chars', '14') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_min_chars', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold', '25') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path', 'images/icons') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_create_thumbnail', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_display_inlined', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_imagick', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_height', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_width', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_height', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_thumb_width', '400') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_width', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_min_thumb_filesize', '12000') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_check', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_enable', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_host', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_password', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_package_size', '20') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_port', '5222') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_use_ssl', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_username', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_email', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_password', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_port', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user_filter', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_load', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_search_load', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_anon_lastread', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_birthdays', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_memberlist', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewprofile', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewtopic', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_lastread', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_track', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_jumpbox', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_moderators', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_guests', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_time', '5') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_onlinetrack', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_search', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_autologin_time', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize', '262144') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize_pm', '262144') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_login_attempts', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_name_chars', '20') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_num_search_keywords', '10') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_pass_chars', '100') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options', '10') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_chars', '60000') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_font_size', '200') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_height', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_width', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_smilies', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_urls', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_quote_depth', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_reg_attempts', '5') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars', '255') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_font_size', '200') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_height', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_width', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_smilies', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_urls', '5') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_name_chars', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_pass_chars', '6') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_post_chars', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_search_author_chars', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('mime_triggers', 'body|head|html|img|plaintext|a href|pre|script|table|title') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_post_limit', '3') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_group_default', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('override_user_style', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('pass_complex', 'PASS_TYPE_ANY') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_edit_time', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_boxes', '4') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_msgs', '50') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_recipients', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page', '10') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('print_pm', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('queue_interval', '600') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('ranks_path', 'images/ranks') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('referer_validation', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_block_size', '250') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_anonymous_interval', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'fulltext_native') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_downloads', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_name', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_protocol', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', 'A short text to describe your forum') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', 'yourdomain.com') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page', '50') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_auth_method', 'PLAIN') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', '') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.7-PL1') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90') 
; INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400') 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour', 'AA0000', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id', '2', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username', '', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts', '1', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics', '1', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users', '1', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state', '', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size', '0', 1) 
; INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc', '0', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_announce', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_attach', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bbcode', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bump', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_delete', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_download', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_edit', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_email', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_flash', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_icons', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_ignoreflood', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_img', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_list', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_noapprove', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_poll', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_post', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_postcount', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_print', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_read', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_reply', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_report', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_search', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sigs', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_smilies', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sticky', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_subscribe', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_user_lock', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_vote', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_votechg', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_approve', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_chgposter', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_delete', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_edit', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_info', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_lock', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_merge', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_move', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_report', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_split', 1, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_ban', 0, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_warn', 0, 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_aauth', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_attach', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authgroups', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authusers', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_backup', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ban', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bbcode', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_board', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bots', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_clearlogs', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_email', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_fauth', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forum', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumadd', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumdel', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_group', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupadd', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupdel', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_icons', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_jabber', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_language', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_mauth', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_modules', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_names', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_phpinfo', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_profile', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_prune', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ranks', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_reasons', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_roles', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_search', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_server', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_styles', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_switchperm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_uauth', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_user', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_userdel', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewauth', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewlogs', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_words', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_attach', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgavatar', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgcensors', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgemail', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chggrp', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgname', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgpasswd', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_download', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_hideonline', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_ignoreflood', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm_group', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_attach', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_bbcode', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_delete', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_download', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_edit', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_emailpm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_flash', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_forward', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_img', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_printpm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_smilies', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_readpm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_savedrafts', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_search', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendemail', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendim', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendpm', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sig', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewonline', 1) 
; INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewprofile', 1) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_STANDARD', 'ROLE_DESCRIPTION_ADMIN_STANDARD', 'a_', 1) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FORUM', 'ROLE_DESCRIPTION_ADMIN_FORUM', 'a_', 3) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_USERGROUP', 'ROLE_DESCRIPTION_ADMIN_USERGROUP', 'a_', 4) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FULL', 'ROLE_DESCRIPTION_ADMIN_FULL', 'a_', 2) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_FULL', 'ROLE_DESCRIPTION_USER_FULL', 'u_', 3) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_STANDARD', 'ROLE_DESCRIPTION_USER_STANDARD', 'u_', 1) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_LIMITED', 'ROLE_DESCRIPTION_USER_LIMITED', 'u_', 2) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOPM', 'ROLE_DESCRIPTION_USER_NOPM', 'u_', 4) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOAVATAR', 'ROLE_DESCRIPTION_USER_NOAVATAR', 'u_', 5) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_FULL', 'ROLE_DESCRIPTION_MOD_FULL', 'm_', 3) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_STANDARD', 'ROLE_DESCRIPTION_MOD_STANDARD', 'm_', 1) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_SIMPLE', 'ROLE_DESCRIPTION_MOD_SIMPLE', 'm_', 2) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_QUEUE', 'ROLE_DESCRIPTION_MOD_QUEUE', 'm_', 4) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_FULL', 'ROLE_DESCRIPTION_FORUM_FULL', 'f_', 7) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_STANDARD', 'ROLE_DESCRIPTION_FORUM_STANDARD', 'f_', 5) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NOACCESS', 'ROLE_DESCRIPTION_FORUM_NOACCESS', 'f_', 1) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_READONLY', 'ROLE_DESCRIPTION_FORUM_READONLY', 'f_', 2) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED', 'ROLE_DESCRIPTION_FORUM_LIMITED', 'f_', 3) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_BOT', 'ROLE_DESCRIPTION_FORUM_BOT', 'f_', 9) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_ONQUEUE', 'ROLE_DESCRIPTION_FORUM_ONQUEUE', 'f_', 8) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_POLLS', 'ROLE_DESCRIPTION_FORUM_POLLS', 'f_', 6) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED_POLLS', 'ROLE_DESCRIPTION_FORUM_LIMITED_POLLS', 'f_', 4) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NEW_MEMBER', 'ROLE_DESCRIPTION_USER_NEW_MEMBER', 'u_', 6) 
; INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', 10) 
; INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES ('prosilver', '© phpBB Group', 1, 1, 1, 1) 
; INSERT INTO phpbb_styles_imageset (imageset_name, imageset_copyright, imageset_path) VALUES ('prosilver', '© phpBB Group', 'prosilver') 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('site_logo', 'site_logo.gif', '', 52, 139, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_link', 'forum_link.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read', 'forum_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_locked', 'forum_read_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_subforum', 'forum_read_subforum.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread', 'forum_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_locked', 'forum_unread_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_subforum', 'forum_unread_subforum.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_moved', 'topic_moved.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read', 'topic_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_mine', 'topic_read_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot', 'topic_read_hot.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot_mine', 'topic_read_hot_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked', 'topic_read_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked_mine', 'topic_read_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread', 'topic_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_mine', 'topic_unread_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot', 'topic_unread_hot.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot_mine', 'topic_unread_hot_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked', 'topic_unread_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked_mine', 'topic_unread_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read', 'sticky_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_mine', 'sticky_read_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked', 'sticky_read_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked_mine', 'sticky_read_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread', 'sticky_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_mine', 'sticky_unread_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked', 'sticky_unread_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked_mine', 'sticky_unread_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read', 'announce_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_mine', 'announce_read_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked', 'announce_read_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread', 'announce_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read', 'announce_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_mine', 'announce_read_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked', 'announce_read_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread', 'announce_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_read', 'topic_read.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_unread', 'topic_unread.gif', '', 27, 27, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_back_top', 'icon_back_top.gif', '', 11, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_aim', 'icon_contact_aim.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_email', 'icon_contact_email.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_icq', 'icon_contact_icq.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_jabber', 'icon_contact_jabber.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_msnm', 'icon_contact_msnm.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_www', 'icon_contact_www.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_yahoo', 'icon_contact_yahoo.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_delete', 'icon_post_delete.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_info', 'icon_post_info.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_report', 'icon_post_report.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target', 'icon_post_target.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target_unread', 'icon_post_target_unread.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_attach', 'icon_topic_attach.gif', '', 10, 7, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_latest', 'icon_topic_latest.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_newest', 'icon_topic_newest.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_reported', 'icon_topic_reported.gif', '', 14, 16, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_unapproved', 'icon_topic_unapproved.gif', '', 14, 16, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_user_warn', 'icon_user_warn.gif', '', 20, 20, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_read', 'subforum_read.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_unread', 'subforum_unread.gif', '', 9, 11, 1) 
; INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('prosilver', '© phpBB Group', 'prosilver', 'lNg=', 0) 
; INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('prosilver', '© phpBB Group', 'prosilver', 1, '') 
; INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('Your first category', '', 1, 4, 0, 0, 1, 1, 1, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, '') 
; INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_subject, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('Your first forum', 'Description of your first forum.', 2, 3, 1, 1, 1, 1, 1, 1, 2, 'Admin', 'AA0000', 'Welcome to phpBB3', 972086460, '', '', '', '', '', '', '', 0, 0, '') 
; INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_allow_massemail) VALUES (2, 1, 'Anonymous', 'anonymous', 0, '', '', 'en', 1, 0, '', 0, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0) 
; INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd) VALUES (3, 5, 'Admin', 'admin', 0, '21232f297a57a5a743894a0e4a801fc3', 'admin@yourdomain.com', 'en', 1, 1, 'AA0000', 1, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '') 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GUESTS', 3, 0, '', 0, '', '', '', 5) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED', 3, 0, '', 0, '', '', '', 5) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED_COPPA', 3, 0, '', 0, '', '', '', 5) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GLOBAL_MODERATORS', 3, 0, '00AA00', 1, '', '', '', 0) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('ADMINISTRATORS', 3, 1, 'AA0000', 1, '', '', '', 0) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('BOTS', 3, 0, '9E8DA7', 0, '', '', '', 5) 
; INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('NEWLY_REGISTERED', 3, 0, '', 0, '', '', '', 5) 
; INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (1, 1, 0, 0) 
; INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (2, 2, 0, 0) 
; INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (4, 2, 0, 0) 
; INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (5, 2, 0, 1) 
; INSERT INTO phpbb_ranks (rank_title, rank_min, rank_special, rank_image) VALUES ('Site Admin', 0, 1, '') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 1, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option NOT IN ('a_switchperm', 'a_jabber', 'a_phpinfo', 'a_server', 'a_backup', 'a_styles', 'a_clearlogs', 'a_modules', 'a_language', 'a_email', 'a_bots', 'a_search', 'a_aauth', 'a_roles') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 2, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_fauth', 'a_forum', 'a_forumadd', 'a_forumdel', 'a_mauth', 'a_prune', 'a_uauth', 'a_viewauth', 'a_viewlogs') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 3, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_ban', 'a_group', 'a_groupadd', 'a_groupdel', 'a_ranks', 'a_uauth', 'a_user', 'a_viewauth', 'a_viewlogs') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 4, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 5, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 6, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_flash', 'u_pm_forward') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 7, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_', 'u_chgavatar', 'u_chgcensors', 'u_chgemail', 'u_chgpasswd', 'u_download', 'u_hideonline', 'u_sig', 'u_viewprofile') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_readpm', 'u_sendpm', 'u_masspm', 'u_masspm_group') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_chgavatar', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_chgavatar', 'u_masspm', 'u_masspm_group') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 10, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 11, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option NOT IN ('m_ban', 'm_chgposter') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 12, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_delete', 'm_edit', 'm_info', 'm_report') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 13, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_approve', 'm_edit') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 14, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 15, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 16, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option = 'f_' 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 17, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_search', 'f_subscribe', 'f_print');
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 19, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_print') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock', 'f_votechg', 'f_noapprove') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 21, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_sticky', 'f_user_lock') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 22, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_attach', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_sticky', 'f_user_lock', 'f_votechg') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 23, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_sendpm', 'u_masspm', 'u_masspm_group') 
; INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 24, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove') 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) SELECT 1, 0, auth_option_id, 0, 1 FROM phpbb_acl_options WHERE auth_option IN ('u_', 'u_download', 'u_search') 
; INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 5, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 5, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 1, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 6, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 0, 0, 6, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 5, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 10, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 1, 0, 17, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 1, 0, 17, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 1, 0, 17, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 1, 0, 17, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 2, 0, 17, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 2, 0, 15, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 2, 0, 15, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 2, 0, 21, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 14, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 10, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 2, 0, 19, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 0, 0, 23, 0) 
; INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 2, 0, 24, 0) 
; INSERT INTO phpbb_topics (topic_title, topic_poster, topic_time, topic_views, topic_replies, topic_replies_real, forum_id, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, poll_title) VALUES ('Welcome to phpBB3', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 'AA0000', 1, 2, 'Admin', 'AA0000', 'Welcome to phpBB3', 972086460, 972086460, '') 
; INSERT INTO phpbb_posts (topic_id, forum_id, poster_id, icon_id, post_time, post_username, poster_ip, post_subject, post_text, post_checksum, bbcode_uid) VALUES (1, 2, 2, 0, 972086460, '', '127.0.0.1', 'Welcome to phpBB3', 'This is an example post in your phpBB3 installation. Everything seems to be working. You may delete this post if you like and continue to set up your board. During the installation process your first category and your first forum are assigned an appropriate set of permissions for the predefined usergroups administrators, bots, global moderators, guests, registered users and registered COPPA users. If you also choose to delete your first category and your first forum, do not forget to assign permissions for all these usergroups for all new categories and forums you create. It is recommended to rename your first category and your first forum and copy permissions from these while creating new categories and forums. Have fun!', '5dd683b17f641daf84c040bfefc58ce9', '') 
; INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2, 1, 1) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':D', 'icon_e_biggrin.gif', 'Very Happy', 15, 17, 1) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-D', 'icon_e_biggrin.gif', 'Very Happy', 15, 17, 2) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':grin:', 'icon_e_biggrin.gif', 'Very Happy', 15, 17, 3) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':)', 'icon_e_smile.gif', 'Smile', 15, 17, 4) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-)', 'icon_e_smile.gif', 'Smile', 15, 17, 5) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':smile:', 'icon_e_smile.gif', 'Smile', 15, 17, 6) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';)', 'icon_e_wink.gif', 'Wink', 15, 17, 7) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';-)', 'icon_e_wink.gif', 'Wink', 15, 17, 8) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':wink:', 'icon_e_wink.gif', 'Wink', 15, 17, 9) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':(', 'icon_e_sad.gif', 'Sad', 15, 17, 10) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-(', 'icon_e_sad.gif', 'Sad', 15, 17, 11) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':sad:', 'icon_e_sad.gif', 'Sad', 15, 17, 12) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':o', 'icon_e_surprised.gif', 'Surprised', 15, 17, 13) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-o', 'icon_e_surprised.gif', 'Surprised', 15, 17, 14) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':eek:', 'icon_e_surprised.gif', 'Surprised', 15, 17, 15) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':shock:', 'icon_eek.gif', 'Shocked', 15, 17, 16) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?', 'icon_e_confused.gif', 'Confused', 15, 17, 17) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-?', 'icon_e_confused.gif', 'Confused', 15, 17, 18) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':???:', 'icon_e_confused.gif', 'Confused', 15, 17, 19) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES ('8-)', 'icon_cool.gif', 'Cool', 15, 17, 20) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cool:', 'icon_cool.gif', 'Cool', 15, 17, 21) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':lol:', 'icon_lol.gif', 'Laughing', 15, 17, 22) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':x', 'icon_mad.gif', 'Mad', 15, 17, 23) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-x', 'icon_mad.gif', 'Mad', 15, 17, 24) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mad:', 'icon_mad.gif', 'Mad', 15, 17, 25) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':P', 'icon_razz.gif', 'Razz', 15, 17, 26) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-P', 'icon_razz.gif', 'Razz', 15, 17, 27) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':razz:', 'icon_razz.gif', 'Razz', 15, 17, 28) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':oops:', 'icon_redface.gif', 'Embarrassed', 15, 17, 29) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cry:', 'icon_cry.gif', 'Crying or Very Sad', 15, 17, 30) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':evil:', 'icon_evil.gif', 'Evil or Very Mad', 15, 17, 31) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':twisted:', 'icon_twisted.gif', 'Twisted Evil', 15, 17, 32) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':roll:', 'icon_rolleyes.gif', 'Rolling Eyes', 15, 17, 33) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':!:', 'icon_exclaim.gif', 'Exclamation', 15, 17, 34) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?:', 'icon_question.gif', 'Question', 15, 17, 35) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':idea:', 'icon_idea.gif', 'Idea', 15, 17, 36) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':arrow:', 'icon_arrow.gif', 'Arrow', 15, 17, 37) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':|', 'icon_neutral.gif', 'Neutral', 15, 17, 38) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-|', 'icon_neutral.gif', 'Neutral', 15, 17, 39) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mrgreen:', 'icon_mrgreen.gif', 'Mr. Green', 15, 17, 40) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':geek:', 'icon_e_geek.gif', 'Geek', 17, 17, 41) 
; INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':ugeek:', 'icon_e_ugeek.gif', 'Uber Geek', 17, 18, 42) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/fire.gif', 16, 16, 1, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/redface.gif', 16, 16, 9, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/mrgreen.gif', 16, 16, 10, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/heart.gif', 16, 16, 4, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/star.gif', 16, 16, 2, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/radioactive.gif', 16, 16, 3, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/thinking.gif', 16, 16, 5, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/info.gif', 16, 16, 8, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/question.gif', 16, 16, 6, 1) 
; INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/alert.gif', 16, 16, 7, 1) 
; INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('warez', 'The post contains links to illegal or pirated software.', 1) 
; INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('spam', 'The reported post has the only purpose to advertise for a website or another product.', 2) 
; INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('off_topic', 'The reported post is off topic.', 3) 
; INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('other', 'The reported post does not fit into any other category, please use the further information field.', 4) 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Images', 1, 1, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Archives', 0, 1, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Plain Text', 0, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Documents', 0, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Real Media', 3, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Windows Media', 2, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Flash Files', 5, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Quicktime Media', 6, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('Downloadable Files', 0, 0, 1, '', 0, '') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'gif') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'png') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpeg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tif') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tiff') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tga') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gtar') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gz') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tar') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'zip') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'rar') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'ace') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'torrent') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tgz') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'bz2') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, '7z') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'txt') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'c') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'h') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'cpp') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'hpp') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'diz') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'csv') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'ini') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'log') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'js') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'xml') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xls') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsx') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsm') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsb') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'doc') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docx') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docm') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dot') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotx') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotm') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pdf') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ai') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ps') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ppt') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptx') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptm') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odp') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ods') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odt') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'rtf') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'rm') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'ram') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wma') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wmv') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (7, 'swf') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mov') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4v') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4a') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mp4') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3gp') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3g2') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'qt') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpeg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mp3') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogg') 
; INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogm') 
; INSERT INTO phpbb_config (config_name, config_value)  				VALUES ('board_startdate', '1298240099')
; INSERT INTO phpbb_config (config_name, config_value)  				VALUES ('default_lang', 'en')
; UPDATE phpbb_config  				SET config_value = '/usr/bin/' 				WHERE config_name = 'img_imagick'
; UPDATE phpbb_config  				SET config_value = 'localhost' 				WHERE config_name = 'server_name'
; UPDATE phpbb_config  				SET config_value = '80' 				WHERE config_name = 'server_port'
; UPDATE phpbb_config  				SET config_value = 'ralucap@mit.edu' 				WHERE config_name = 'board_email'
; UPDATE phpbb_config  				SET config_value = 'ralucap@mit.edu' 				WHERE config_name = 'board_contact'
; UPDATE phpbb_config  				SET config_value = 'localhost' 				WHERE config_name = 'cookie_domain'
; UPDATE phpbb_config  				SET config_value = 'D M d, Y g:i a' 				WHERE config_name = 'default_dateformat'
; UPDATE phpbb_config  				SET config_value = '1' 				WHERE config_name = 'email_enable'
; UPDATE phpbb_config  				SET config_value = '0' 				WHERE config_name = 'smtp_delivery'
; UPDATE phpbb_config  				SET config_value = '' 				WHERE config_name = 'smtp_host'
; UPDATE phpbb_config  				SET config_value = 'PLAIN' 				WHERE config_name = 'smtp_auth_method'
; UPDATE phpbb_config  				SET config_value = '' 				WHERE config_name = 'smtp_username'
; UPDATE phpbb_config  				SET config_value = '' 				WHERE config_name = 'smtp_password'
; UPDATE phpbb_config  				SET config_value = '0' 				WHERE config_name = 'cookie_secure'
; UPDATE phpbb_config  				SET config_value = '0' 				WHERE config_name = 'force_server_vars'
; UPDATE phpbb_config  				SET config_value = '/phpBB' 				WHERE config_name = 'script_path'
; UPDATE phpbb_config  				SET config_value = 'http://' 				WHERE config_name = 'server_protocol'
; UPDATE phpbb_config  				SET config_value = 'root' 				WHERE config_name = 'newest_username'
; UPDATE phpbb_config  				SET config_value = '631db60f13f13f8f0bc6520dde9e94fc' 				WHERE config_name = 'avatar_salt'
; UPDATE phpbb_users  				SET username = 'root', user_password='c892ac9e1967421cebe0dfca4a25eab6', user_ip = '127.0.0.1', user_lang = 'en', user_email='ralucap@mit.edu', user_dateformat='D M d, Y g:i a', user_email_hash = 229125398915, username_clean = 'root' 				WHERE username = 'Admin'
; UPDATE phpbb_moderator_cache  				SET username = 'root' 				WHERE username = 'Admin'
; UPDATE phpbb_forums  				SET forum_last_poster_name = 'root' 				WHERE forum_last_poster_name = 'Admin'
; UPDATE phpbb_topics  				SET topic_first_poster_name = 'root', topic_last_poster_name = 'root' 				WHERE topic_first_poster_name = 'Admin' 					OR topic_last_poster_name = 'Admin'
; UPDATE phpbb_users  				SET user_regdate = 1298240099
; UPDATE phpbb_posts  				SET post_time = 1298240099, poster_ip = '127.0.0.1'
; UPDATE phpbb_topics  				SET topic_time = 1298240099, topic_last_post_time = 1298240099
; UPDATE phpbb_forums  				SET forum_last_post_time = 1298240099
; UPDATE phpbb_config  				SET config_value = '5.1.37-1ubuntu5.5-log' 				WHERE config_name = 'dbms_version'
; UPDATE phpbb_config  				SET config_value = 'phpbb_captcha_gd' 				WHERE config_name = 'captcha_plugin'
; UPDATE phpbb_config  				SET config_value = '1' 				WHERE config_name = 'captcha_gd'
; UPDATE phpbb_config  			SET config_value = 'phpbb3_l7tf7' 			WHERE config_name = 'cookie_name'
;
; SET NAMES 'utf8' 
; SELECT @@session.sql_mode AS sql_mode 
; SET SESSION sql_mode=',STRICT_ALL_TABLES,STRICT_TRANS_TABLES' 
; SELECT config_name, config_value  				FROM phpbb_config 				WHERE is_dynamic = 1
; SELECT u.*, s.*  				FROM phpbb_sessions s, phpbb_users u 				WHERE s.session_id = 'e75876f1ba0efbcecd31fac162502686' 					AND u.user_id = s.session_user_id
; UPDATE phpbb_sessions SET session_time = 1289503746, session_page = 'ucp.php?i=profile&mode=profile_info', session_forum_id = 0  								WHERE session_id = 'e75876f1ba0efbcecd31fac162502686'
; SELECT DISTINCT u.user_id, u.username, u.username_clean, u.user_colour, MAX(s.session_time) as online_time, MIN(s.session_viewonline) AS viewonline FROM (phpbb_users u, phpbb_zebra z) LEFT JOIN phpbb_sessions s ON (s.session_user_id = z.zebra_id) WHERE z.user_id = 53  			AND z.friend = 1 			AND u.user_id = z.zebra_id GROUP BY z.zebra_id, u.user_id, u.username_clean, u.user_colour, u.username ORDER BY u.username_clean ASC
; SELECT *  			FROM phpbb_profile_fields_data 			WHERE user_id = 53  LIMIT 1
; SELECT lang_id  			FROM phpbb_lang 			WHERE lang_iso = 'en'
; SELECT l.*, f.*  			FROM phpbb_profile_lang l, phpbb_profile_fields f 			WHERE f.field_active = 1 				 AND f.field_show_profile = 1 				AND l.lang_id = 1 				AND l.field_id = f.field_id 			ORDER BY f.field_order
; 
; 
; SET NAMES 'utf8' 
; SELECT @@session.sql_mode AS sql_mode 
; SET SESSION sql_mode=',STRICT_ALL_TABLES,STRICT_TRANS_TABLES' 
; SELECT config_name, config_value  				FROM phpbb_config 				WHERE is_dynamic = 1
; SELECT u.user_id, u.user_lang  			FROM phpbb_sessions s, phpbb_users u 			WHERE s.session_id = 'e75876f1ba0efbcecd31fac162502686' 				AND s.session_user_id = u.user_id
; SELECT s.style_id, c.theme_id, c.theme_data, c.theme_path, c.theme_name, c.theme_mtime, i.*, t.template_path  		FROM phpbb_styles s, phpbb_styles_template t, phpbb_styles_theme c, phpbb_styles_imageset i 		WHERE s.style_id = 1 			AND t.template_id = s.template_id 			AND c.theme_id = s.theme_id 			AND i.imageset_id = s.imageset_id
; 
; 
; SET NAMES 'utf8' 
; SELECT @@session.sql_mode AS sql_mode 
; SET SESSION sql_mode=',STRICT_ALL_TABLES,STRICT_TRANS_TABLES' 
; SELECT config_name, config_value  				FROM phpbb_config 				WHERE is_dynamic = 1
; SELECT u.*, s.*  				FROM phpbb_sessions s, phpbb_users u 				WHERE s.session_id = 'e75876f1ba0efbcecd31fac162502686' 					AND u.user_id = s.session_user_id
; UPDATE phpbb_sessions SET session_time = 1289503924, session_page = 'memberlist.php', session_forum_id = 0  								WHERE session_id = 'e75876f1ba0efbcecd31fac162502686'
; SELECT s.style_id, t.template_storedb, t.template_path, t.template_id, t.bbcode_bitfield, t.template_inherits_id, t.template_inherit_path, c.theme_path, c.theme_name, c.theme_storedb, c.theme_id, i.imageset_path, i.imageset_id, i.imageset_name  			FROM phpbb_styles s, phpbb_styles_template t, phpbb_styles_theme c, phpbb_styles_imageset i 			WHERE s.style_id = 1 				AND t.template_id = s.template_id 				AND c.theme_id = s.theme_id 				AND i.imageset_id = s.imageset_id
; SELECT *  			FROM phpbb_styles_imageset_data 			WHERE imageset_id = 1 			AND image_filename <> '' 			AND image_lang IN ('en', '')
; SELECT u.user_id  			FROM phpbb_users u 				 			WHERE u.user_type IN (0, 3) 				 			ORDER BY u.user_regdate ASC  LIMIT 25
; SELECT session_user_id, MAX(session_time) AS session_time  				FROM phpbb_sessions 				WHERE session_time >= 1289500324 					AND session_user_id IN (2, 53) 				GROUP BY session_user_id
; SELECT *  					FROM phpbb_users 					WHERE user_id IN (2, 53)
; SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id  		FROM phpbb_forums 		ORDER BY left_id ASC 		  
;
back to top