Update user_id field to be optional in FlowRead class
This commit is contained in:
parent
1d23649358
commit
ac8f2b7070
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class FlowCreate(FlowBase):
|
|||
|
||||
class FlowRead(FlowBase):
|
||||
id: UUID
|
||||
user_id: UUID = Field()
|
||||
user_id: Optional[UUID] = Field()
|
||||
|
||||
|
||||
class FlowUpdate(SQLModel):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue