Add release_date for games and content folder

This commit is contained in:
2024-05-11 13:50:03 +04:00
parent 6ea6abad41
commit ce1a706467
4 changed files with 17 additions and 13 deletions

View File

@@ -16,7 +16,8 @@ class Game(Base):
language = Column(String)
version = Column(String)
download_size = Column(String)
upload_date = Column(String)
upload_date = Column(String, nullable=False)
release_date = Column(String)
system = Column(String)
processor = Column(String)