From 7ae3ff0307571b0390c123c8ff45efdbb1a43231 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Tue, 14 Nov 2023 17:13:31 -0500 Subject: [PATCH] Updating the DB Model ADR with some notes. Signed-off-by: Cliff Hill --- docs/adrs/008-db-models.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/adrs/008-db-models.md b/docs/adrs/008-db-models.md index 1f7ee19..2516a43 100644 --- a/docs/adrs/008-db-models.md +++ b/docs/adrs/008-db-models.md @@ -17,3 +17,5 @@ Accepted ## Consequences Not sure at this time. Dataclass implementation in SQLAlchemy is a new thing. + +Because of issues surrounding the differences between Pydantic and SQLAlchemy's models, these will need to be separate at this time. Eventually, when SQLModel gets updated to handle Pydantic 2.0+ and SQLAlchemy 2.0+, then this can be revised and updated to use SQLModel.