Verfasst: 30.12.2004 20:57
Stimmt, habs jetzt gesehen. Habe ich die User schon verloren oder gibt es die noch?
LG
garnele
LG
garnele
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Hi Garnele,Garnele hat geschrieben: Soll ich das mal laufen lassen?
???Garnele hat geschrieben:In dieser Übersicht ist nicht der Tabellentyp angegeben. Da ich jedoch ca. 10 Tabellen neu anlegen muss ist das verherend.
Code: Alles auswählen
TYPE=MyISAM;Genau,kratzer54847 hat geschrieben:einfach nach der schließenen Klammer
anfügenCode: Alles auswählen
TYPE=MyISAM;
Code: Alles auswählen
#
# Table structure for table 'phpbb_auth_access'
#
CREATE TABLE phpbb_auth_access (
group_id mediumint(8) DEFAULT '0' NOT NULL,
forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
auth_view tinyint(1) DEFAULT '0' NOT NULL,
auth_read tinyint(1) DEFAULT '0' NOT NULL,
auth_post tinyint(1) DEFAULT '0' NOT NULL,
auth_reply tinyint(1) DEFAULT '0' NOT NULL,
auth_edit tinyint(1) DEFAULT '0' NOT NULL,
auth_delete tinyint(1) DEFAULT '0' NOT NULL,
auth_sticky tinyint(1) DEFAULT '0' NOT NULL,
auth_announce tinyint(1) DEFAULT '0' NOT NULL,
auth_vote tinyint(1) DEFAULT '0' NOT NULL,
auth_pollcreate tinyint(1) DEFAULT '0' NOT NULL,
auth_attachments tinyint(1) DEFAULT '0' NOT NULL,
auth_mod tinyint(1) DEFAULT '0' NOT NULL,
KEY group_id (group_id),
KEY forum_id (forum_id)
) TYPE=MyISAM;