Seite 1 von 1

Multi Desc Datenbank Befehle Rückgängig.

Verfasst: 24.04.2008 09:19
von Elvis
Hallo,
ich weis das das eine ganz blöde Frage ist aber wie mach ich das wieder Rückgängig in phpmyadmin ?

Code: Alles auswählen

ALTER TABLE phpbb_topics ADD topic_description VARCHAR( 255 ) NOT NULL DEFAULT '';
ALTER TABLE phpbb_drafts ADD draft_description varchar(100) NOT NULL default '';
ALTER TABLE phpbb_posts ADD post_description VARCHAR( 100 ) NOT NULL DEFAULT '';
ALTER TABLE phpbb_privmsgs ADD message_description varchar(100) NOT NULL default '';

Verfasst: 24.04.2008 09:41
von Dr.Death
Relativ einfach ;-)

Code: Alles auswählen

 ALTER TABLE `phpbb_topics` DROP `topic_description`  ;
 ALTER TABLE `phpbb_drafts` DROP `draft_description`  ;
 ALTER TABLE `phpbb_posts` DROP `post_description`  ;
 ALTER TABLE `phpbb_privmsgs` DROP `message_description`  ;

Verfasst: 24.04.2008 13:25
von Elvis
Dank dir,
das ist auch Relativ einfach nur ich habs nicht so damit :-?