core.orm.mixins.timestamp ========================= .. py:module:: core.orm.mixins.timestamp Classes ------- .. autoapisummary:: core.orm.mixins.timestamp.TimestampMixin Module Contents --------------- .. py:class:: TimestampMixin Mixin providing created/modified timestamps for all records. The columns are deferred loaded as this is primarily for logging and future forensics. .. py:method:: timestamp() -> datetime.datetime :staticmethod: .. py:method:: force_update() -> None Forces the model to update by changing the modified parameter. .. py:property:: created :type: sqlalchemy.schema.Column[datetime.datetime] .. py:property:: modified :type: sqlalchemy.schema.Column[datetime.datetime | None] .. py:method:: last_change() -> datetime.datetime Returns the self.modified if not NULL, else self.created.