Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Unreleased
^^^^^^^^^^

- **BREAKING CHANGE**: Dropped support for Python 3.8 and 3.9.
- Reference unique constraint on transaction.native_transaction_id with the name of the column instead of the constraint name.


0.18.0 (2026-04-15)
Expand Down
2 changes: 1 addition & 1 deletion postgresql_audit/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def set_activity_values(self, session):
insert(table)
.values(**values)
.on_conflict_do_nothing(
constraint='transaction_unique_native_tx_id'
index_elements=('native_transaction_id',)
)
)
session.execute(stmt)
Expand Down
Loading