First Check
Commit to Help
Example Code
from sqlmodel import SQLModel, Field, PickleType
class FlowInDb(SQLModel, table=True):
id : str = Field(primary_key=True)
flow: PickleType
class Config:
arbitrary_types_allowed = True
Description
Getting Error ...
sqlalchemy.exc.CompileError: (in table 'flowindb', column 'flow'): Can't generate DDL for NullType(); did you forget to specify a type on this Column?
Operating System
Windows
Operating System Details
No response
SQLModel Version
0.06
Python Version
3.10
Additional Context
No response
First Check
Commit to Help
Example Code
Description
Getting Error ...
sqlalchemy.exc.CompileError: (in table 'flowindb', column 'flow'): Can't generate DDL for NullType(); did you forget to specify a type on this Column?
Operating System
Windows
Operating System Details
No response
SQLModel Version
0.06
Python Version
3.10
Additional Context
No response