Add conditional caching and opt-in import scheduler
This commit is contained in:
@@ -110,6 +110,12 @@ class OfficialRecordImport(Base):
|
||||
rows_created: Mapped[int] = mapped_column(default=0)
|
||||
rows_updated: Mapped[int] = mapped_column(default=0)
|
||||
error_summary: Mapped[str | None] = mapped_column(Text)
|
||||
response_status: Mapped[int | None]
|
||||
response_etag: Mapped[str | None] = mapped_column(String(500))
|
||||
response_last_modified: Mapped[str | None] = mapped_column(String(500))
|
||||
response_content_type: Mapped[str | None] = mapped_column(String(200))
|
||||
response_bytes: Mapped[int | None]
|
||||
not_modified: Mapped[bool] = mapped_column(default=False)
|
||||
|
||||
|
||||
class ModerationEvent(Base):
|
||||
|
||||
Reference in New Issue
Block a user