canape/migrations/0007_imdb_ratings.down.sql
Lucas BEE 97057b43c3 Add IMDB ratings in database
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
2019-04-17 17:30:27 +02:00

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;