SYMBOL INDEX (19 symbols across 3 files) FILE: 01-movies.sql type Movies (line 3) | CREATE TABLE Movies ( type Ratings (line 15) | CREATE TABLE Ratings (id INTEGER PRIMARY KEY, movie_id integer, score va... type Genres (line 16) | CREATE TABLE Genres (id INTEGER PRIMARY KEY , movie_id integer, genre va... type title (line 18) | CREATE INDEX title on Movies (title) type year (line 19) | CREATE INDEX year on Movies (year) type titleyear (line 20) | CREATE INDEX titleyear on Movies (title, year) type id (line 21) | CREATE INDEX id on Movies (id) type rid (line 22) | CREATE INDEX rid on Ratings (id) type rmid (line 23) | CREATE INDEX rmid on Ratings (movie_id) type gid (line 24) | CREATE INDEX gid on Genres (id) type gmid (line 25) | CREATE INDEX gmid on Genres (movie_id) FILE: 02-import.rb function import_movies (line 6) | def import_movies function import_times (line 26) | def import_times function import_budgets (line 46) | def import_budgets function import_mpaa_ratings (line 61) | def import_mpaa_ratings function import_genres (line 77) | def import_genres function import_ratings (line 97) | def import_ratings FILE: 03-export.rb function genres_binary (line 10) | def genres_binary(id, db) function ratings_breakdown (line 15) | def ratings_breakdown(ratings)