From a872dac061616acfef2c2b0d97e78834fd38e815 Mon Sep 17 00:00:00 2001 From: Cannon Lock Date: Fri, 29 Mar 2024 10:15:11 -0500 Subject: [PATCH] Update location of the schema api --- api/schemas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/schemas.py b/api/schemas.py index 258f27a..f19dfb9 100644 --- a/api/schemas.py +++ b/api/schemas.py @@ -148,8 +148,8 @@ class IngestType(enum.Enum): class IngestProcess(Base): - __tablename__ = "maps_meta" - __table_args__ = {'schema': 'macrostrat'} + __tablename__ = "ingest_process" + __table_args__ = {'schema': 'maps_meta'} id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)