Zitat:
Zitat von hubbabubba
Die Anleitung ist nicht korrekt. file_flag ist ein Feld in der Tabelle content_manager. Es steht "Suchen Sie die Tabelle cm_file_flags".
|
Hi hubbabubba,
kannst Du mir das bitte noch genauer erklären? Bei mir in der DB ist doch eine Tabelle namens "cm_file_flags" !?
Code:
#
# Table structure for table 'cm_file_flags'
#
DROP TABLE IF EXISTS `cm_file_flags`;
CREATE TABLE `cm_file_flags` (
`file_flag` int(11) NOT NULL default '0',
`file_flag_name` varchar(32) NOT NULL default '',
PRIMARY KEY (`file_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
#
# Dumping data for table 'cm_file_flags'
#
INSERT INTO `cm_file_flags` (`file_flag`, `file_flag_name`) VALUES("0", "information");
INSERT INTO `cm_file_flags` (`file_flag`, `file_flag_name`) VALUES("1", "content");
Jim