passiondynamics / cineguess-backend

Source for API + database functionality for cineguess.
0 stars 0 forks source link

Create the database skeleton #15

Open OwenM4 opened 6 months ago

OwenM4 commented 6 months ago

Points: 2

TODOs:

Notes: We need to build a database to store all the movies and information we need to run the game. We will use a SQL database with the Movie ID being the primary key.

OwenM4 commented 5 months ago

MovieID: An integer field serving as the primary key for each movie. MovieName: A string field to store the name of the movie. ActorNames: A JSON field to store actor names. You can use this to store multiple actor names in a comma-separated or JSON format. ActorImages: A JSON field to store actor images (file paths or URLs). OtherAnswers: A JSON field for additional answers related to the movie. Hints: A JSON field for storing hints. QuizDate: A date field to store the date when the movie will show in the quiz.