Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 9977b82

Browse files
committed
Move the ingest process table to maps_metadata
1 parent e4406b7 commit 9977b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class IngestState(enum.Enum):
140140

141141
class IngestProcess(Base):
142142
__tablename__ = "ingest_process"
143-
__table_args__ = {'schema': 'macrostrat'}
143+
__table_args__ = {'schema': 'maps_metadata'}
144144
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
145145

146146
state: Mapped[str] = mapped_column(Enum(IngestState, name="ingest_state"), nullable=True)

0 commit comments

Comments
 (0)