You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
/* |
|
* This file is part of video_metadata. |
|
* |
|
* video_metadata is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation, either version 3 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* video_metadata is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with video_metadata. If not, see <https://www.gnu.org/licenses/>. |
|
*/ |
|
|
|
|
|
DROP TABLE IF EXISTS movie_queries; |
|
CREATE TABLE movie_queries( |
|
query_id integer primary key autoincrement, |
|
query text, |
|
year integer |
|
); |
|
|
|
DROP TABLE IF EXISTS movie_details; |
|
CREATE TABLE movie_details( |
|
movie_id primary key not null, |
|
title text, |
|
overview text, |
|
release_date date, |
|
original_language text, |
|
poster_path text |
|
); |
|
|
|
DROP TABLE IF EXISTS movie_query_mapping; |
|
CREATE TABLE movie_query_mapping( |
|
query_id int, |
|
movie_id int, |
|
foreign key(query_id) references movie_queries(query_id), |
|
foreign key(movie_id) references movie_details(movie_id) |
|
); |
|
|
|
DROP TABLE IF EXISTS movie_paths; |
|
CREATE TABLE movie_paths( |
|
movie_id int not null, |
|
movie_path text unique not null, |
|
foreign key(movie_id) references movie_details(movie_id) |
|
); |
|
|
|
DROP TABLE IF EXISTS movie_genres; |
|
CREATE TABLE movie_genres( |
|
genre_id integer primary key not null, |
|
genre_name |
|
); |
|
|
|
DROP TABLE IF EXISTS movie_genre_mapping; |
|
CREATE TABLE movie_genre_mapping( |
|
genre_id integer, |
|
movie_id integer, |
|
foreign key(genre_id) references movie_genres(genre_id), |
|
foreign key(movie_id) references movie_details(movie_id) |
|
); |
|
|
|
DROP TABLE IF EXISTS actor_details; |
|
CREATE TABLE actor_details( |
|
actor_id integer primary key not null, |
|
name text, |
|
date_of_birth date, |
|
poster_path text |
|
); |
|
|
|
DROP TABLE IF EXISTS actor_movie_mapping; |
|
CREATE TABLE actor_movie_mapping( |
|
movie_id integer, |
|
actor_id integer, |
|
character_name text, |
|
foreign key(movie_id) references movie_details(movie_id), |
|
foreign key(actor_id) references actor_details(actor_id) |
|
); |
|
|
|
|
|
-- TODO: tv shows |
|
|
|
DROP TABLE IF EXISTS tv_queries; |
|
CREATE TABLE tv_queries( |
|
query text, |
|
year integer |
|
);
|
|
|