nicht aufgeben

Nein ... die install-Datei ist ja nur da um die Tabellen in der Datenbank anzulegen ... danach soll sie gelöscht werden.hat das jetzt auswirkungen auf die: chatbox_db_install.php
-----[ COPY ]--------------------------------------------
#
# Do this only if you are not going to do the SQL sttements Manually
#
copy support_files/chatbox_db_install.php to phpbb/chatbox_db_install.php
#
#-----[ SQL ]---------------------------------------------
# Run these folloing queries manually or run chatbox_db_install.php found in the support files folder once
# Afterthat please remove your chatbox_db_install.php immediately
#
# NOTE: if the prefix of your boards is not "phpbb_" please change
# the below SQL statement so that the right prefix is used
DROP TABLE IF EXISTS `phpbb_chatbox`;
CREATE TABLE `phpbb_chatbox` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(99) NOT NULL default '',
`msg` varchar(255) NOT NULL default '',
`timestamp` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1528 ;
DROP TABLE IF EXISTS `phpbb_chatbox_session`;
CREATE TABLE `phpbb_chatbox_session` (
`username` varchar(99) NOT NULL default '',
`user_id` mediumint(8) unsigned NOT NULL default '0',
`lastactive` int(10) NOT NULL default '0',
`laststatus` varchar(8) NOT NULL default '',
UNIQUE KEY `username` (`username`)
) TYPE=MyISAM;