Skip to content

Commit

Permalink
Merge branch 'main' into cache-missing-import
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored Oct 15, 2024
2 parents 6ad43b0 + 39b4ed2 commit 84ac155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/usage/databases/sqlalchemy/models_and_repository.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ implementations:
* :class:`UUIDAuditBase <advanced_alchemy.base.UUIDAuditBase>`

Both include a ``UUID`` based primary key
and ``UUIDAuditBase`` includes an ``updated_at`` and ``created_at`` timestamp column.
and ``UUIDAuditBase`` includes ``updated_at`` and ``created_at`` timestamp columns.

The ``UUID`` will be a native ``UUID``/``GUID`` type on databases that support it such as Postgres. For other engines without
a native UUID data type, the UUID is stored as a 16-byte ``BYTES`` or ``RAW`` field.
Expand All @@ -45,7 +45,7 @@ a native UUID data type, the UUID is stored as a 16-byte ``BYTES`` or ``RAW`` fi
* :class:`BigIntAuditBase <advanced_alchemy.base.BigIntAuditBase>`

Both include a ``BigInteger`` based primary key
and ``BigIntAuditBase`` includes an ``updated_at`` and ``created_at`` timestamp column.
and ``BigIntAuditBase`` includes ``updated_at`` and ``created_at`` timestamp columns.

Models using these bases also include the following enhancements:

Expand Down

0 comments on commit 84ac155

Please sign in to comment.