Update database architecture. Add genres and actors

This commit is contained in:
2024-06-23 19:42:40 +04:00
parent 7b2f270913
commit fc3bcc343d
18 changed files with 220 additions and 12 deletions

View File

@@ -1,4 +1,11 @@
from .games import Game as Game
from .game_genres import GameGenre as GameGenre
from .movies import Movie as Movie
from .movie_genres import MovieGenre as MovieGenre
from .movie_actors import MovieActor as MovieActor
from .audiobooks import Audiobook as Audiobook
from .audiobook_genres import AudiobookGenre as AudiobookGenre
from .users import User as User