From 8db623b050d38763e0a57e6fc1e229be505224e6 Mon Sep 17 00:00:00 2001 From: Cannon Lock Date: Fri, 29 Mar 2024 10:17:49 -0500 Subject: [PATCH] Update location of the schema api --- api/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/schemas.py b/api/schemas.py index f19dfb9..a3a926d 100644 --- a/api/schemas.py +++ b/api/schemas.py @@ -149,7 +149,7 @@ class IngestType(enum.Enum): class IngestProcess(Base): __tablename__ = "ingest_process" - __table_args__ = {'schema': 'maps_meta'} + __table_args__ = {'schema': 'maps_metadata'} id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)