8 lines
264 B
Python
8 lines
264 B
Python
import uuid
|
|
from sqlmodel import Field, Column, JSON, SQLModel
|
|
|
|
|
|
class KeyValueSqlModel(SQLModel, table=True):
|
|
id: uuid.UUID = Field(default_factory=uuid.uuid4, primary_key=True)
|
|
key: str = Field(index=True)
|
|
value: dict = Field(sa_column=Column(JSON))
|