A movie database where users can learn details about movies, directors, and actors.
Accessing all the movie information is difficult because I have to either call a movie theater, go to a store, or ask a friend for movie recommendations. It's also difficult to find other movies my favorite actors and directors have made.
- Directors
- Actors
- Movie Fans
- As a user, I want to know more details about movies (the directors, actors, and cast) in one place.
- As a user, I want to find movies that I might be interested in watching.
- As a user, I want to see the filmography of directors and actors, so that I can find new movies to watch.
- As a user, I want to be able to add a new movie, so that other users can see the details.
- As a user, I want to be able to edit (and delete) movies, directors, and actors so that records are up to date and accurate
# id
# title
# year
# director_id
class Movie
belongs_to :director
end
# id
# dob
# name
# bio
class Director
has_many :movies
end
# TODO: add columns
class Actor
end
# TODO: add columns
class Character
end