File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
packages/postgres-database/src/simcore_postgres_database
services/web/server/tests Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 44from typing import TypeVar
55
66import sqlalchemy as sa
7+ from pydantic import BaseModel
78from sqlalchemy .ext .asyncio import AsyncConnection , AsyncEngine
89
910_logger = logging .getLogger (__name__ )
@@ -63,7 +64,7 @@ async def transaction_context(
6364SQLModel = TypeVar (
6465 # Towards using https://sqlmodel.tiangolo.com/#create-a-sqlmodel-model
6566 "SQLModel" ,
66- bound = " BaseModel" ,
67+ bound = BaseModel ,
6768)
6869
6970
Original file line number Diff line number Diff line change @@ -234,6 +234,7 @@ async def _setup(
234234 "workspaceId" : None ,
235235 "folderId" : None ,
236236 "trashedAt" : None ,
237+ "trashedByPrimaryGid" : None ,
237238 }
238239 if from_study :
239240 from_study_wo_access_rights = deepcopy (from_study )
You can’t perform that action at this time.
0 commit comments