-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.sql
220 lines (198 loc) · 6.53 KB
/
schema.sql
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
CREATE SCHEMA discogs;
CREATE TABLE discogs.artists (
id int4 NOT NULL,
data_quality varchar(255) NULL,
"name" text NULL,
profile text NULL,
real_name text NULL,
status text NULL,
CONSTRAINT artists_pkey PRIMARY KEY (id)
);
CREATE TABLE discogs.artist_namevariations (
artist_id int4 NOT NULL,
ofst int4 NOT NULL,
namevariation text NOT NULL,
CONSTRAINT artist_namevariations_pkey PRIMARY KEY (artist_id, ofst),
CONSTRAINT artists_id_fkey FOREIGN KEY (artist_id) REFERENCES artists(id) ON DELETE CASCADE
);
CREATE TABLE discogs.artist_aliases (
artist_id int4 NOT NULL,
ofst int4 NOT NULL,
artist2_id int4 NULL,
"name" varchar(255) NULL,
CONSTRAINT artist_aliases_pkey PRIMARY KEY (artist_id, ofst),
CONSTRAINT artists_id_fkey FOREIGN KEY (artist_id) REFERENCES artists(id) ON DELETE CASCADE
);
CREATE TABLE discogs.artist_groups (
artist_id int4 NOT NULL,
ofst int4 NOT NULL,
artist2_id int4 NULL,
"name" text NULL,
CONSTRAINT artist_groups_pkey PRIMARY KEY (artist_id, ofst),
CONSTRAINT artists_id_fkey FOREIGN KEY (artist_id) REFERENCES artists(id) ON DELETE CASCADE
);
CREATE TABLE discogs.artist_members (
artist_id int4 NOT NULL,
ofst int4 NOT NULL,
artist2_id int4 NULL,
"name" text NULL,
CONSTRAINT artist_members_pkey PRIMARY KEY (artist_id, ofst),
CONSTRAINT artists_id_fkey FOREIGN KEY (artist_id) REFERENCES artists(id) ON DELETE CASCADE
);
CREATE TABLE discogs.artist_urls (
artist_id int4 NOT NULL,
ofst int4 NOT NULL,
url text NOT NULL,
CONSTRAINT artist_urls_pkey PRIMARY KEY (artist_id, ofst),
CONSTRAINT artists_id_fkey FOREIGN KEY (artist_id) REFERENCES artists(id) ON DELETE CASCADE
);
CREATE TABLE discogs.releases (
id int4 NOT NULL,
country varchar(255) NULL,
data_quality varchar(255) NULL,
master_id int4 NULL,
notes text NULL,
released varchar(255) NULL,
status text NULL,
title text NULL,
CONSTRAINT releases_pkey PRIMARY KEY (id)
);
CREATE TABLE discogs.release_artist_maps (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
artist_id int4 NOT NULL,
anv text NULL,
join_relation text NULL,
"name" text NULL,
tracks text NULL,
CONSTRAINT release_artist_maps_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_extra_artist_maps (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
artist_id int4 NOT NULL,
anv text NULL,
join_relation text NULL,
"name" text NULL,
"role" text NULL,
tracks text NULL,
CONSTRAINT release_extra_artist_maps_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_companies (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
company_id int4 NOT NULL,
catno varchar(255) NULL,
entity_type int4 NULL,
entity_type_name varchar(255) NULL,
"name" varchar(255) NULL,
CONSTRAINT release_companies_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_formats (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
"name" text NULL,
qty text NULL,
"text" text NULL,
CONSTRAINT release_formats_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_genres (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
genre varchar(255) NOT NULL,
CONSTRAINT release_genres_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_styles (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
"style" varchar(255) NOT NULL,
CONSTRAINT release_styles_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_labels (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
label_id int4 NOT NULL,
catno text NULL,
"name" varchar(255) NULL,
CONSTRAINT release_labels_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.release_videos (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
src varchar(255) NOT NULL,
description varchar(255) NULL,
duration varchar(255) NULL,
embed bool NULL,
title varchar(255) NULL,
CONSTRAINT release_videos_pkey PRIMARY KEY (release_id, ofst),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.tracks (
release_id int4 NOT NULL,
ofst int4 NOT NULL,
title text NULL,
duration varchar(255) NULL,
"position" varchar(255) NULL,
CONSTRAINT tracks_pkey PRIMARY KEY (ofst, release_id),
CONSTRAINT releases_id_fkey FOREIGN KEY (release_id) REFERENCES releases(id) ON DELETE CASCADE
);
CREATE TABLE discogs.track_artist_maps (
release_id int4 NOT NULL,
track_ofst int4 NOT NULL,
artist_ofst int4 NOT NULL,
artist_id int4 NOT NULL,
anv text NULL,
join_relation text NULL,
"name" text NULL,
CONSTRAINT track_artist_maps_pkey PRIMARY KEY (release_id, track_ofst, artist_ofst),
CONSTRAINT tracks_id_fkey FOREIGN KEY (release_id, track_ofst)
REFERENCES tracks(release_id, ofst) ON DELETE CASCADE
);
CREATE TABLE discogs.track_extra_artist_maps (
release_id int4 NOT NULL,
track_ofst int4 NOT NULL,
artist_ofst int4 NOT NULL,
artist_id int4 NOT NULL,
anv text NULL,
join_relation text NULL,
"name" text NULL,
"role" text NULL,
CONSTRAINT track_extra_artist_maps_pkey PRIMARY KEY (track_ofst, release_id, artist_ofst),
CONSTRAINT tracks_id_fkey FOREIGN KEY (release_id, track_ofst)
REFERENCES tracks(release_id, ofst) ON DELETE CASCADE
);
CREATE TABLE discogs.masters (
id int4 NOT NULL,
main_release_id int4 NULL,
CONSTRAINT master_pkey PRIMARY KEY (id)
);
CREATE TABLE discogs.labels (
id int4 NOT NULL,
contact_info text NULL,
data_quality varchar(255) NULL,
"name" varchar(255) NULL,
profile text NULL,
CONSTRAINT labels_pkey PRIMARY KEY (id)
);
CREATE TABLE discogs.label_sublabels (
label_id int4 NOT NULL,
ofst int4 NOT NULL,
label2_id int4 NOT NULL,
"name" varchar(255) NULL,
CONSTRAINT label_sublabels_pkey PRIMARY KEY (label_id, ofst),
CONSTRAINT label_id_fkey FOREIGN KEY (label_id) REFERENCES labels(id) ON DELETE CASCADE
);
CREATE TABLE discogs.label_urls (
label_id int4 NOT NULL,
ofst int4 NOT NULL,
url text NOT NULL,
CONSTRAINT label_urls_pkey PRIMARY KEY (label_id, ofst),
CONSTRAINT label_id_fkey FOREIGN KEY (label_id) REFERENCES labels(id) ON DELETE CASCADE
);