Advertisement
Advertisement
| 09.18.2008 at 02:29PM PDT, ID: 23744088 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: |
CREATE TABLE IF NOT EXISTS `albums` ( `album_id` int(10) NOT NULL auto_increment, `artist_id` int(10) NOT NULL default '0', `album_name` varchar(255) NOT NULL default '', `album_url` varchar(255) NOT NULL, `album_date` varchar(10) NOT NULL, `album_art` varchar(255) NOT NULL, PRIMARY KEY (`album_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=36136 ; -- -------------------------------------------------------- -- -- Table structure for table `artists` -- CREATE TABLE IF NOT EXISTS `artists` ( `artist_id` int(10) NOT NULL auto_increment, `artist_name` varchar(255) NOT NULL default '', `artist_url` varchar(255) NOT NULL default '', PRIMARY KEY (`artist_id`), UNIQUE KEY `artist_name` (`artist_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7953 ; -- -------------------------------------------------------- -- -- Table structure for table `lyrics` -- CREATE TABLE IF NOT EXISTS `lyrics` ( `lyrics_id` int(10) NOT NULL auto_increment, `artist_id` int(10) NOT NULL, `album_id` int(10) NOT NULL, `song_id` int(10) NOT NULL default '0', `song_lyrics` longtext NOT NULL, `lyrics_url` varchar(255) NOT NULL, PRIMARY KEY (`lyrics_id`), UNIQUE KEY `song_id` (`song_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=411424 ; -- -------------------------------------------------------- -- -- Table structure for table `moved_artists` -- CREATE TABLE IF NOT EXISTS `moved_artists` ( `artist_id` int(10) NOT NULL default '0', `artist_name` varchar(255) NOT NULL default '', `artist_url` varchar(255) NOT NULL default '', PRIMARY KEY (`artist_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `search_index` -- CREATE TABLE IF NOT EXISTS `search_index` ( `word_id` int(10) NOT NULL auto_increment, `artist_id` int(10) NOT NULL, `song_id` int(10) NOT NULL, `word` varchar(225) NOT NULL default '', `weight` int(10) NOT NULL default '0', UNIQUE KEY `word_id` (`word_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=27182361 ; -- -------------------------------------------------------- -- -- Table structure for table `songs` -- CREATE TABLE IF NOT EXISTS `songs` ( `song_id` int(10) NOT NULL auto_increment, `artist_id` int(10) NOT NULL default '0', `album_id` int(10) NOT NULL, `song_name` varchar(255) NOT NULL default '', `song_url` varchar(255) NOT NULL default '', PRIMARY KEY (`song_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=415872 ; |