
Originally Posted by
mistymurata
I'm missing a table in the database and need to add it again but need the correct database settings for it. This is the error message that I am getting:
1146 Table 'misty_zc1.TABLE_MUSIC_GENRE' doesn't exist
in:
[select music_genre_id, music_genre_name from TABLE_MUSIC_GENRE order by music_genre_name]
I really need some help with this I have been at this for days and cannot figure out a solution, I am so beyond frustrated. Here is the link to the site if you need to see if yourself
www.crazy-4-monograms.com/store
Go to /admin/tools/install _SQL_Patches, then run this SQL query:
Code:
CREATE TABLE IF NOT EXISTS music_genre (
music_genre_id int(11) NOT NULL auto_increment,
music_genre_name varchar(32) NOT NULL default '',
date_added datetime default NULL,
last_modified datetime default NULL,
PRIMARY KEY (music_genre_id),
KEY idx_music_genre_name_zen (music_genre_name)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Cheers
Rod