Add method to fetch ratings from imdb every day Create a new table and a new view to fetch directly the movies and shows with their imdb ratings
5 lines
123 B
SQL
5 lines
123 B
SQL
DROP TABLE IF EXISTS imdb_ratings CASCADE;
|
|
|
|
DROP VIEW IF EXISTS shows_with_rating;
|
|
DROP VIEW IF EXISTS movies_with_rating;
|