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

Commit d055297

Browse files
committed
Revert "Move the ingest process table to maps_metadata"
This reverts commit 9977b82.
1 parent 9977b82 commit d055297

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': 'maps_metadata'}
143+
__table_args__ = {'schema': 'macrostrat'}
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)