10 lines
299 B
Python
10 lines
299 B
Python
from sqlmodel import SQLModel, Field, Column, JSON
|
|
|
|
from utils.randomizers import get_random_uuid
|
|
|
|
|
|
class SlideModel(SQLModel, table=True):
|
|
id: str = Field(primary_key=True, default_factory=get_random_uuid)
|
|
presentation: str
|
|
layout: str
|
|
content: dict = Field(sa_column=Column(JSON))
|