44 |
- |
1 |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
|
2 |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
|
3 |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
|
4 |
/*!40101 SET NAMES utf8 */;
|
|
|
5 |
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
|
6 |
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
|
7 |
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
|
8 |
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
|
9 |
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
|
10 |
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
11 |
|
|
|
12 |
--
|
|
|
13 |
-- Table structure for table `artistAliases`
|
|
|
14 |
--
|
|
|
15 |
|
|
|
16 |
DROP TABLE IF EXISTS `artistAliases`;
|
|
|
17 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
18 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
19 |
CREATE TABLE `artistAliases` (
|
|
|
20 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
21 |
`name` text NOT NULL,
|
|
|
22 |
KEY `artistAliasesId` (`id`),
|
|
|
23 |
KEY `artistAliasesName` (`name`(255))
|
|
|
24 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
25 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
26 |
|
|
|
27 |
--
|
|
|
28 |
-- Table structure for table `artistGroups`
|
|
|
29 |
--
|
|
|
30 |
|
|
|
31 |
DROP TABLE IF EXISTS `artistGroups`;
|
|
|
32 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
33 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
34 |
CREATE TABLE `artistGroups` (
|
|
|
35 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
36 |
`name` text NOT NULL,
|
|
|
37 |
KEY `artistGroupsId` (`id`),
|
|
|
38 |
KEY `artistGroupsName` (`name`(255))
|
|
|
39 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
40 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
41 |
|
|
|
42 |
--
|
|
|
43 |
-- Table structure for table `artistMembers`
|
|
|
44 |
--
|
|
|
45 |
|
|
|
46 |
DROP TABLE IF EXISTS `artistMembers`;
|
|
|
47 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
48 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
49 |
CREATE TABLE `artistMembers` (
|
|
|
50 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
51 |
`mid` mediumint(8) unsigned NOT NULL,
|
|
|
52 |
KEY `artistMembersId` (`id`),
|
|
|
53 |
KEY `artistMembersMId` (`mid`)
|
|
|
54 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
55 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
56 |
|
|
|
57 |
--
|
|
|
58 |
-- Table structure for table `artistProfiles`
|
|
|
59 |
--
|
|
|
60 |
|
|
|
61 |
DROP TABLE IF EXISTS `artistProfiles`;
|
|
|
62 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
63 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
64 |
CREATE TABLE `artistProfiles` (
|
|
|
65 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
66 |
`profile` blob NOT NULL,
|
|
|
67 |
PRIMARY KEY (`id`)
|
|
|
68 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
69 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
70 |
|
|
|
71 |
--
|
|
|
72 |
-- Table structure for table `artistUrls`
|
|
|
73 |
--
|
|
|
74 |
|
|
|
75 |
DROP TABLE IF EXISTS `artistUrls`;
|
|
|
76 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
77 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
78 |
CREATE TABLE `artistUrls` (
|
|
|
79 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
80 |
`url` text NOT NULL,
|
|
|
81 |
KEY `artistUrlsId` (`id`)
|
|
|
82 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
83 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
84 |
|
|
|
85 |
--
|
|
|
86 |
-- Table structure for table `artistVariations`
|
|
|
87 |
--
|
|
|
88 |
|
|
|
89 |
DROP TABLE IF EXISTS `artistVariations`;
|
|
|
90 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
91 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
92 |
CREATE TABLE `artistVariations` (
|
|
|
93 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
94 |
`name` text NOT NULL,
|
|
|
95 |
KEY `artistVariationsId` (`id`),
|
|
|
96 |
KEY `artistVariationsName` (`name`(255))
|
|
|
97 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
98 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
99 |
|
|
|
100 |
--
|
|
|
101 |
-- Table structure for table `artists`
|
|
|
102 |
--
|
|
|
103 |
|
|
|
104 |
DROP TABLE IF EXISTS `artists`;
|
|
|
105 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
106 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
107 |
CREATE TABLE `artists` (
|
|
|
108 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
109 |
`name` text DEFAULT NULL,
|
|
|
110 |
`realname` text DEFAULT NULL,
|
|
|
111 |
PRIMARY KEY (`id`),
|
|
|
112 |
KEY `artistsName` (`name`(255))
|
|
|
113 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
114 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
115 |
|
|
|
116 |
--
|
|
|
117 |
-- Table structure for table `labelUrls`
|
|
|
118 |
--
|
|
|
119 |
|
|
|
120 |
DROP TABLE IF EXISTS `labelUrls`;
|
|
|
121 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
122 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
123 |
CREATE TABLE `labelUrls` (
|
|
|
124 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
125 |
`url` text NOT NULL,
|
|
|
126 |
KEY `labelUrlsId` (`id`)
|
|
|
127 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
128 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
129 |
|
|
|
130 |
--
|
|
|
131 |
-- Table structure for table `labels`
|
|
|
132 |
--
|
|
|
133 |
|
|
|
134 |
DROP TABLE IF EXISTS `labels`;
|
|
|
135 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
136 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
137 |
CREATE TABLE `labels` (
|
|
|
138 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
139 |
`name` text DEFAULT NULL,
|
|
|
140 |
`parentlabel` tinytext DEFAULT NULL,
|
|
|
141 |
`sublabel` text DEFAULT NULL,
|
|
|
142 |
PRIMARY KEY (`id`),
|
|
|
143 |
KEY `labelsName` (`name`(255))
|
|
|
144 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
145 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
146 |
|
|
|
147 |
--
|
|
|
148 |
-- Table structure for table `masterArtists`
|
|
|
149 |
--
|
|
|
150 |
|
|
|
151 |
DROP TABLE IF EXISTS `masterArtists`;
|
|
|
152 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
153 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
154 |
CREATE TABLE `masterArtists` (
|
|
|
155 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
156 |
`aid` mediumint(8) unsigned NOT NULL,
|
|
|
157 |
KEY `masterArtistsId` (`id`),
|
|
|
158 |
KEY `masterArtistsAId` (`aid`)
|
|
|
159 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
160 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
161 |
|
|
|
162 |
--
|
|
|
163 |
-- Table structure for table `masters`
|
|
|
164 |
--
|
|
|
165 |
|
|
|
166 |
DROP TABLE IF EXISTS `masters`;
|
|
|
167 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
168 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
169 |
CREATE TABLE `masters` (
|
|
|
170 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
171 |
`rid` mediumint(8) unsigned NOT NULL,
|
|
|
172 |
`year` smallint(4) unsigned DEFAULT NULL,
|
|
|
173 |
`title` text DEFAULT NULL,
|
|
|
174 |
`genres` varchar(192) DEFAULT NULL,
|
|
|
175 |
`styles` text DEFAULT NULL,
|
|
|
176 |
PRIMARY KEY (`id`),
|
|
|
177 |
KEY `mastersRId` (`rid`),
|
|
|
178 |
KEY `mastersTitle` (`title`(255))
|
|
|
179 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
180 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
181 |
|
|
|
182 |
--
|
|
|
183 |
-- Table structure for table `releaseArtists`
|
|
|
184 |
--
|
|
|
185 |
|
|
|
186 |
DROP TABLE IF EXISTS `releaseArtists`;
|
|
|
187 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
188 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
189 |
CREATE TABLE `releaseArtists` (
|
|
|
190 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
191 |
`aid` mediumint(8) unsigned NOT NULL,
|
|
|
192 |
KEY `releaseArtistsId` (`id`),
|
|
|
193 |
KEY `releaseArtistsAId` (`aid`)
|
|
|
194 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
195 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
196 |
|
|
|
197 |
--
|
|
|
198 |
-- Table structure for table `releaseLabels`
|
|
|
199 |
--
|
|
|
200 |
|
|
|
201 |
DROP TABLE IF EXISTS `releaseLabels`;
|
|
|
202 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
203 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
204 |
CREATE TABLE `releaseLabels` (
|
|
|
205 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
206 |
`lid` mediumint(8) unsigned DEFAULT NULL,
|
|
|
207 |
`catno` text DEFAULT NULL,
|
|
|
208 |
KEY `releaseLabelsId` (`id`),
|
|
|
209 |
KEY `releaseLabelsLId` (`lid`),
|
|
|
210 |
KEY `releaseLabelsCatno` (`catno`(255))
|
|
|
211 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
212 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
213 |
|
|
|
214 |
--
|
|
|
215 |
-- Table structure for table `releaseTracks`
|
|
|
216 |
--
|
|
|
217 |
|
|
|
218 |
DROP TABLE IF EXISTS `releaseTracks`;
|
|
|
219 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
220 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
221 |
CREATE TABLE `releaseTracks` (
|
|
|
222 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
223 |
`track` blob NOT NULL,
|
|
|
224 |
PRIMARY KEY (`id`)
|
|
|
225 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
226 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
227 |
|
|
|
228 |
--
|
|
|
229 |
-- Table structure for table `releases`
|
|
|
230 |
--
|
|
|
231 |
|
|
|
232 |
DROP TABLE IF EXISTS `releases`;
|
|
|
233 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
234 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
235 |
CREATE TABLE `releases` (
|
|
|
236 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
237 |
`mid` mediumint(8) unsigned DEFAULT NULL,
|
|
|
238 |
`title` text DEFAULT NULL,
|
|
|
239 |
`country` enum('Abkhazia','Afghanistan','Africa','Albania','Algeria','Andorra','Angola','Anguilla','Antigua & Barbuda','Antigua & Barbuda','Argentina','Armenia','Aruba','Asia','Australasia','Australia','Australia & New Zealand','Austria','Austria-Hungary','Azerbaijan','Bahamas, The','Bahrain','Bangladesh','Barbados','Belarus','Belgium','Belize','Benelux','Benin','Bermuda','Bhutan','Bohemia','Bolivia','Bosnia & Herzegovina','Botswana','Brazil','British Virgin Islands','Brunei','Bulgaria','Burkina Faso','Burma','Cambodia','Cameroon','Canada','Cape Verde','Cayman Islands','Central African Republic','Central America','Chad','Chile','China','Colombia','Comoros','Congo, Democratic Republic of the','Congo, Republic of the','Cook Islands','Costa Rica','Croatia','Cuba','Curaçao','Cyprus','Czech Republic','Czech Republic & Slovakia','Czechoslovakia','Dahomey','Denmark','Djibouti','Dominica','Dominican Republic','Dutch East Indies','East Timor','Ecuador','Egypt','El Salvador','Equatorial Guinea','Eritrea','Estonia','Ethiopia','Europe','Falkland Islands','Faroe Islands','Fiji','Finland','France','France & Benelux','French Guiana','French Polynesia','Gabon','Gambia, The','Gaza Strip','Georgia','German Democratic Republic (GDR)','Germany','Germany & Switzerland','Germany, Austria, & Switzerland','Ghana','Gibraltar','Greece','Greenland','Grenada','Guadeloupe','Guam','Guatemala','Guernsey','Guinea','Guinea-Bissau','Gulf Cooperation Council','Guyana','Haiti','Honduras','Hong Kong','Hungary','Iceland','India','Indochina','Indonesia','Iran','Iraq','Ireland','Israel','Italy','Ivory Coast','Jamaica','Japan','Jersey','Jordan','Kazakhstan','Kenya','Korea (pre-1945)','Kosovo','Kuwait','Kyrgyzstan','Laos','Latvia','Lebanon','Lesotho','Liberia','Libya','Liechtenstein','Lithuania','Luxembourg','Macau','Macedonia','Madagascar','Malawi','Malaysia','Maldives','Mali','Malta','Man, Isle of','Marshall Islands','Martinique','Mauritania','Mauritius','Mayotte','Mexico','Middle East','Moldova, Republic of','Monaco','Mongolia','Montenegro','Montserrat','Morocco','Mozambique','Namibia','Nepal','Netherlands','Netherlands Antilles','New Caledonia','New Zealand','Nicaragua','Niger','Nigeria','North America (inc Mexico)','North Korea','Northern Mariana Islands','Norway','Oman','Ottoman Empire','Pakistan','Palau','Panama','Papua New Guinea','Paraguay','Peru','Philippines','Poland','Portugal','Protectorate of Bohemia and Moravia','Puerto Rico','Qatar','Reunion','Rhodesia','Romania','Russia','Rwanda','Saint Helena','Saint Kitts and Nevis','Saint Lucia','Saint Vincent and the Grenadines','Samoa','San Marino','Sao Tome and Principe','Saudi Arabia','Scandinavia','Senegal','Serbia','Serbia and Montenegro','Seychelles','Sierra Leone','Singapore','Singapore, Malaysia & Hong Kong','Sint Maarten','Slovakia','Slovenia','Solomon Islands','Somalia','South Africa','South America','South East Asia','South Korea','South Pacific','South Vietnam','South West Africa','Southern Rhodesia','Southern Sudan','Spain','Sri Lanka','Sudan','Suriname','Swaziland','Sweden','Switzerland','Syria','Taiwan','Tajikistan','Tanzania','Thailand','Togo','Tonga','Trinidad & Tobago','Tunisia','Turkey','Turkmenistan','Turks and Caicos Islands','Uganda','UK','UK & Europe','UK & France','UK & Ireland','UK & US','UK, Europe & Israel','UK, Europe & Japan','UK, Europe & US','Ukraine','United Arab Emirates','Upper Volta','Uruguay','US','USA & Canada','USA & Europe','USA, Canada & Europe','USA, Canada & UK','USSR','Uzbekistan','Vanuatu','Vatican City','Venezuela','Vietnam','Virgin Islands','West Bank','Yemen','Yugoslavia','Zaire','Zambia','Zimbabwe'),
|
|
|
240 |
`released` smallint(4) unsigned DEFAULT NULL,
|
|
|
241 |
`barcode` char(14) DEFAULT NULL,
|
|
|
242 |
`quantity` smallint(4) unsigned DEFAULT NULL,
|
|
|
243 |
`format` enum('12"','4-Track Cartridge','8-Track Cartridge','Acetate','All Media','Betacam','Betacam SP','Betamax','Blu-ray','Blu-ray-R','Box Set','Cassette','CD','CDr','CDV','Cylinder','DAT','DC-International','DCC','DVD','DVDr','Edison Disc','Elcaset','File','Flexi-disc','Floppy Disk','HD DVD','Hybrid','Laserdisc','Lathe Cut','Memory Stick','Microcassette','Minidisc','MiniDV','MVD','NT Cassette','Pathé Disc','PlayTape','Pocket Rocker','RCA Tape Cartridge','Reel-To-Reel','SACD','SelectaVision','Shellac','Tefifon','U-matic','UMD','Various','VHD','VHS','Video 2000','Video8','Vinyl','Wire Recording') NOT NULL,
|
|
|
244 |
`formatExt` text DEFAULT NULL,
|
|
|
245 |
`formats` text DEFAULT NULL,
|
|
|
246 |
`genres` varchar(163) DEFAULT NULL,
|
|
|
247 |
`styles` text DEFAULT NULL,
|
|
|
248 |
PRIMARY KEY (`id`),
|
|
|
249 |
KEY `releasesMId` (`mid`),
|
|
|
250 |
KEY `releasesTitle` (`title`(255)),
|
|
|
251 |
KEY `releasesBarcode` (`barcode`),
|
|
|
252 |
KEY `releasesFormat` (`format`)
|
|
|
253 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
254 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
255 |
|
|
|
256 |
--
|
|
|
257 |
-- Table structure for table `barcodes`
|
|
|
258 |
--
|
|
|
259 |
|
|
|
260 |
DROP TABLE IF EXISTS `barcodes`;
|
|
|
261 |
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
262 |
/*!40101 SET character_set_client = utf8 */;
|
|
|
263 |
CREATE TABLE `barcodes` (
|
|
|
264 |
`id` mediumint(8) unsigned NOT NULL,
|
|
|
265 |
`mid` mediumint(8) unsigned DEFAULT NULL,
|
|
|
266 |
`country` enum('Abkhazia','Afghanistan','Africa','Albania','Algeria','Andorra','Angola','Anguilla','Antigua & Barbuda','Antigua & Barbuda','Argentina','Armenia','Aruba','Asia','Australasia','Australia','Australia & New Zealand','Austria','Austria-Hungary','Azerbaijan','Bahamas, The','Bahrain','Bangladesh','Barbados','Belarus','Belgium','Belize','Benelux','Benin','Bermuda','Bhutan','Bohemia','Bolivia','Bosnia & Herzegovina','Botswana','Brazil','British Virgin Islands','Brunei','Bulgaria','Burkina Faso','Burma','Cambodia','Cameroon','Canada','Cape Verde','Cayman Islands','Central African Republic','Central America','Chad','Chile','China','Colombia','Comoros','Congo, Democratic Republic of the','Congo, Republic of the','Cook Islands','Costa Rica','Croatia','Cuba','Curaçao','Cyprus','Czech Republic','Czech Republic & Slovakia','Czechoslovakia','Dahomey','Denmark','Djibouti','Dominica','Dominican Republic','Dutch East Indies','East Timor','Ecuador','Egypt','El Salvador','Equatorial Guinea','Eritrea','Estonia','Ethiopia','Europe','Falkland Islands','Faroe Islands','Fiji','Finland','France','France & Benelux','French Guiana','French Polynesia','Gabon','Gambia, The','Gaza Strip','Georgia','German Democratic Republic (GDR)','Germany','Germany & Switzerland','Germany, Austria, & Switzerland','Ghana','Gibraltar','Greece','Greenland','Grenada','Guadeloupe','Guam','Guatemala','Guernsey','Guinea','Guinea-Bissau','Gulf Cooperation Council','Guyana','Haiti','Honduras','Hong Kong','Hungary','Iceland','India','Indochina','Indonesia','Iran','Iraq','Ireland','Israel','Italy','Ivory Coast','Jamaica','Japan','Jersey','Jordan','Kazakhstan','Kenya','Korea (pre-1945)','Kosovo','Kuwait','Kyrgyzstan','Laos','Latvia','Lebanon','Lesotho','Liberia','Libya','Liechtenstein','Lithuania','Luxembourg','Macau','Macedonia','Madagascar','Malawi','Malaysia','Maldives','Mali','Malta','Man, Isle of','Marshall Islands','Martinique','Mauritania','Mauritius','Mayotte','Mexico','Middle East','Moldova, Republic of','Monaco','Mongolia','Montenegro','Montserrat','Morocco','Mozambique','Namibia','Nepal','Netherlands','Netherlands Antilles','New Caledonia','New Zealand','Nicaragua','Niger','Nigeria','North America (inc Mexico)','North Korea','Northern Mariana Islands','Norway','Oman','Ottoman Empire','Pakistan','Palau','Panama','Papua New Guinea','Paraguay','Peru','Philippines','Poland','Portugal','Protectorate of Bohemia and Moravia','Puerto Rico','Qatar','Reunion','Rhodesia','Romania','Russia','Rwanda','Saint Helena','Saint Kitts and Nevis','Saint Lucia','Saint Vincent and the Grenadines','Samoa','San Marino','Sao Tome and Principe','Saudi Arabia','Scandinavia','Senegal','Serbia','Serbia and Montenegro','Seychelles','Sierra Leone','Singapore','Singapore, Malaysia & Hong Kong','Sint Maarten','Slovakia','Slovenia','Solomon Islands','Somalia','South Africa','South America','South East Asia','South Korea','South Pacific','South Vietnam','South West Africa','Southern Rhodesia','Southern Sudan','Spain','Sri Lanka','Sudan','Suriname','Swaziland','Sweden','Switzerland','Syria','Taiwan','Tajikistan','Tanzania','Thailand','Togo','Tonga','Trinidad & Tobago','Tunisia','Turkey','Turkmenistan','Turks and Caicos Islands','Uganda','UK','UK & Europe','UK & France','UK & Ireland','UK & US','UK, Europe & Israel','UK, Europe & Japan','UK, Europe & US','Ukraine','United Arab Emirates','Upper Volta','Uruguay','US','USA & Canada','USA & Europe','USA, Canada & Europe','USA, Canada & UK','USSR','Uzbekistan','Vanuatu','Vatican City','Venezuela','Vietnam','Virgin Islands','West Bank','Yemen','Yugoslavia','Zaire','Zambia','Zimbabwe'),
|
|
|
267 |
`released` smallint(4) unsigned DEFAULT NULL,
|
|
|
268 |
`barcode` char(14) DEFAULT NULL,
|
|
|
269 |
`quantity` smallint(4) unsigned DEFAULT NULL,
|
|
|
270 |
`format` enum('12"','4-Track Cartridge','8-Track Cartridge','Acetate','All Media','Betacam','Betacam SP','Betamax','Blu-ray','Blu-ray-R','Box Set','Cassette','CD','CDr','CDV','Cylinder','DAT','DC-International','DCC','DVD','DVDr','Edison Disc','Elcaset','File','Flexi-disc','Floppy Disk','HD DVD','Hybrid','Laserdisc','Lathe Cut','Memory Stick','Microcassette','Minidisc','MiniDV','MVD','NT Cassette','Pathé Disc','PlayTape','Pocket Rocker','RCA Tape Cartridge','Reel-To-Reel','SACD','SelectaVision','Shellac','Tefifon','U-matic','UMD','Various','VHD','VHS','Video 2000','Video8','Vinyl','Wire Recording') NOT NULL,
|
58 |
- |
271 |
`formatExt` text DEFAULT NULL,
|
44 |
- |
272 |
PRIMARY KEY (`id`),
|
|
|
273 |
KEY `releasesMId` (`mid`)
|
|
|
274 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
275 |
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
276 |
|
|
|
277 |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
|
278 |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
|
279 |
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
|
280 |
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
|
281 |
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
|
282 |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
|
283 |
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|