RED: Now fails with missing attribute

This commit is contained in:
Colin Goutte 2023-08-25 12:05:35 +02:00
parent 3721881813
commit 97cf596ea7
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
from sqlalchemy import Column, ForeignKey, Integer
from database import Base
class Movie(Base):
__tablename__ = "movies"
id = Column(Integer, primary_key=True, index=True)