반응형
[FastAPI] Error 모음집
·
Programming/Python
Database 관련 1. sqlalchemy.exc.InvalidRequestError: Class does not have a __table__ or __tablename__ specified and does not inherit from an existing table-mapped class. 선언한 클래스에 테이블 이름을 지정하지 않아서 나타는 문제이다, 해당 클래스에 테이블명을 선언하면 된다. (이전) class Blog(Base): ... (변경) class Blog(Base): __tablename__ = 'blog' ... 2. sqlalchemy.exc.CompileError: (in table 'blog', column 'body'): VARCHAR requires a length on..
반응형
개발자 쓔쓔
'에러는내가만드는구나' 태그의 글 목록