-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb_schema.sql
541 lines (477 loc) · 11.5 KB
/
db_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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
create table if not exists category
(
imdb_category_id integer not null
constraint category_pkey
primary key,
name text
);
alter table category owner to postgres;
create table if not exists image
(
id bigserial
constraint image_pkey
primary key,
path text
);
alter table image owner to postgres;
create table if not exists library
(
id bigserial
constraint library_pkey
primary key,
name text not null
constraint name
unique,
path text not null,
type text not null
);
alter table library owner to postgres;
create table if not exists movie
(
id bigserial
constraint movie_pkey
primary key,
path text,
library integer not null
constraint library
references library,
name text default 'no_name'::text not null,
trailer text
);
alter table movie owner to postgres;
create table if not exists movie_category
(
movie_id integer not null
constraint movieid
references movie
on delete cascade,
category_id integer not null
constraint categoryid
references category
on delete cascade,
constraint movie_category_pkey
primary key (movie_id, category_id)
);
alter table movie_category owner to postgres;
create table if not exists movie_image
(
movie_id integer not null
constraint movieid
references movie
on delete cascade,
image_id integer not null
constraint imageid
references image
on delete cascade,
active boolean not null,
type text not null,
constraint movie_image_pkey
primary key (movie_id, image_id)
);
alter table movie_image owner to postgres;
create table if not exists movie_metadata
(
found_good_poster boolean default false,
found_good_backdrop boolean default false,
found_good_logo boolean default false,
directplay_ready boolean default false,
id bigserial
constraint movie_metadata_pkey
primary key,
movie_id integer not null
constraint movieid
references movie
on delete cascade,
title text,
overview text,
poster text,
release_date text,
runtime integer,
backdrop text,
added_date text,
popularity numeric,
trailer text,
run_time integer,
tmdb_id integer default '-1'::integer
);
alter table movie_metadata owner to postgres;
create table if not exists serie
(
id bigserial
constraint serie_pkey
primary key,
path text not null,
library integer not null
constraint libraryid
references library
on delete cascade,
name text not null
);
alter table serie owner to postgres;
create table if not exists serie_category
(
serie_id integer not null
constraint serieid
references serie
on delete cascade,
category_id integer not null
constraint categoryid
references category
on delete cascade,
constraint serie_category_pkey
primary key (serie_id, category_id)
);
alter table serie_category owner to postgres;
create table if not exists serie_episode
(
serie_id integer not null
constraint serieid
references serie
on delete cascade,
season_number integer not null,
episode integer not null,
path text not null,
id bigserial
constraint iduniqie
unique,
constraint serie_episode_pkey
primary key (serie_id, season_number, episode)
);
alter table serie_episode owner to postgres;
create table if not exists serie_episode_metadata
(
directplay_ready boolean default false,
air_date text not null,
name text not null,
overview text not null,
image_path text not null,
vote_average text not null,
episode_number integer not null,
season_number integer not null,
serie_id integer not null
constraint serieid
references serie
on delete cascade,
added_date text not null,
run_time integer default '-1'::integer,
constraint serie_episode_metadata_pkey
primary key (episode_number, season_number, serie_id)
);
alter table serie_episode_metadata owner to postgres;
create table if not exists serie_image
(
image_id integer not null
constraint imageid
references image
on delete cascade,
serie_id integer not null
constraint serieid
references serie
on delete cascade,
active boolean not null,
type text not null,
constraint serie_image_pkey
primary key (image_id, serie_id)
);
alter table serie_image owner to postgres;
create table if not exists serie_metadata
(
id bigserial
constraint serie_metadata_pkey
primary key,
serie_id integer not null
constraint serieid
references serie
on delete cascade,
title text not null,
overview text not null,
first_air_date text not null,
added_date text not null,
popularity text not null,
trailer text,
tmdb_id integer not null
);
alter table serie_metadata owner to postgres;
create table if not exists serie_season
(
serie_id integer not null
constraint serieid
references serie
on delete cascade,
season_number integer not null,
path text not null,
constraint serie_season_pkey
primary key (serie_id, season_number)
);
alter table serie_season owner to postgres;
create table if not exists serie_season_metadata
(
name text not null,
air_date text not null,
overview text not null,
poster_path text not null,
serie_id integer not null
constraint serieid
references serie
on delete cascade,
season_id integer not null,
added_date text not null,
constraint serie_season_metadata_pkey
primary key (serie_id, season_id)
);
alter table serie_season_metadata owner to postgres;
create table if not exists users
(
id bigserial
constraint user_pkey
primary key,
username text not null,
has_access boolean default true not null
);
alter table users owner to postgres;
create table if not exists user_episode_progress
(
user_id integer not null
constraint userid
references users
on delete cascade,
episode_id integer not null
constraint episodeid
references serie_episode (id)
on delete cascade,
time integer,
last_watched bigint,
constraint user_episode_progress_pkey
primary key (user_id, episode_id)
);
alter table user_episode_progress owner to postgres;
create table if not exists user_movie_progress
(
user_id integer not null
constraint user_id
references users
on delete cascade,
movie_id integer not null
constraint movie_id
references movie
on delete cascade,
time integer not null,
last_watched bigint,
constraint user_movie_progress_pkey
primary key (user_id, movie_id)
);
alter table user_movie_progress owner to postgres;
create table if not exists user_movie_watched
(
user_id integer not null
constraint user_id
references users
on delete cascade,
movie_id integer not null
constraint movie_id
references movie
on delete cascade,
constraint user_movie_watched_pkey
primary key (user_id, movie_id)
);
alter table user_movie_watched owner to postgres;
create table if not exists user_next_episode
(
user_id integer not null
constraint userid
references users
on delete cascade,
serie_id integer not null
constraint serie_id
references serie
on delete cascade,
episode_id integer not null
constraint episode_id
references serie_episode (id)
on delete cascade,
last_watched bigint,
constraint user_next_episode_pkey
primary key (user_id, serie_id)
);
alter table user_next_episode owner to postgres;
create table if not exists user_refresh_token
(
id serial
constraint user_refresh_token_pkey
primary key,
user_id integer not null
constraint user_id
references users
on delete cascade,
refresh_token text not null,
access_token text not null
);
alter table user_refresh_token owner to postgres;
create table if not exists user_movie_watchlist
(
user_id integer not null
constraint user_movie_watchlist_user_id_fkey
references users
on delete cascade,
movie_id integer not null
constraint user_movie_watchlist_movie_id_fkey
references movie
on delete cascade,
constraint user_movie_watchlist_pkey
primary key (user_id, movie_id)
);
alter table user_movie_watchlist owner to postgres;
create table if not exists movie_resolution
(
movie_id integer not null
constraint movie_resolution_pkey
primary key
constraint movie_resolution_movie_id_fkey
references movie
on delete cascade,
"240p" boolean not null,
"360p" boolean not null,
"480p" boolean not null,
"720p" boolean not null,
"1080p" boolean not null,
"1440p" boolean not null,
"4k" boolean not null,
"8k" boolean not null,
codec text not null
);
alter table movie_resolution owner to postgres;
create table if not exists serie_episode_resolution
(
episode_id integer not null
constraint serie_episode_resolution_pkey
primary key
constraint serie_episode_resolution_episode_id_fkey
references serie_episode (id)
on delete cascade,
"240p" boolean not null,
"360p" boolean not null,
"480p" boolean not null,
"720p" boolean not null,
"1080p" boolean not null,
"1440p" boolean not null,
"4k" boolean not null,
"8k" boolean not null,
codec text not null
);
alter table serie_episode_resolution owner to postgres;
create table if not exists serie_episode_language
(
id serial
constraint serie_episode_language_pkey
primary key,
serie_episode_id integer not null
constraint serie_episode_id
references serie_episode (id)
on delete cascade,
language text not null,
stream_index integer not null,
codec text not null
);
alter table serie_episode_language owner to postgres;
create table if not exists movie_language
(
id serial
constraint movie_language_pkey
primary key,
movie_id integer not null
constraint movie_id
references movie
on delete cascade,
language text not null,
stream_index integer not null,
codec text not null
);
alter table movie_language owner to postgres;
create table if not exists serie_episode_subtitle
(
id bigserial
constraint episode_subtitle_pkey
primary key,
path text not null,
episode_id integer not null
constraint episodeid
references serie_episode (id)
on delete cascade,
library_id integer not null
constraint libraryid
references library
on delete cascade,
language text,
synced boolean not null,
extracted boolean not null
);
alter table serie_episode_subtitle owner to postgres;
create table if not exists subtitle
(
id bigserial
constraint subtitle_pkey
primary key,
path text,
movie_id integer not null
constraint movieid
references movie
on delete cascade,
library_id integer not null
constraint libraryid
references library
on delete cascade,
language text,
synced boolean not null,
extracted boolean not null
);
alter table subtitle owner to postgres;
create table if not exists actor
(
id integer not null
constraint actor_pk
primary key,
name text not null,
image text
);
alter table actor owner to postgres;
create table if not exists movie_actor
(
actor_id integer not null
constraint movie_actor_actor_id_fk
references actor
on delete cascade,
movie_id integer not null
constraint movie_actor_movie_id_fk
references movie
on delete cascade,
character_name text not null,
order_in_credit integer not null,
constraint movie_actor_pk
primary key (actor_id, movie_id)
);
alter table movie_actor owner to postgres;
create table if not exists movie_recommended
(
movie_id_1 integer not null
constraint movie_recommended_movie_id_fk
references movie
on delete cascade,
movie_id_2 integer not null
constraint movie_recommended_movie_id_fk_2
references movie
on delete cascade,
priority integer not null,
constraint movie_recommended_pk
primary key (movie_id_1, movie_id_2)
);
alter table movie_recommended owner to postgres;
create table if not exists movie_popular
(
movie_id integer not null
constraint movie_popular_pk
primary key
constraint movie_popular_movie_id_fk
references movie
on delete cascade
);
alter table movie_popular owner to postgres;