Skip to content

Commit

Permalink
fix: change outbox primary key to bigint (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi authored Jan 4, 2025
1 parent 2bfad64 commit bf2b9d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 2.5.1

* chore: static analysis fix
* fix: change outbox primary key to bigint

## 2.5.0

Expand Down
2 changes: 1 addition & 1 deletion packages/domain-event-outbox/src/Entity/OutboxMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
class OutboxMessage
{
#[Id]
#[Column]
#[Column(type: Types::BIGINT)]
#[GeneratedValue]
private ?int $id = null;

Expand Down

0 comments on commit bf2b9d3

Please sign in to comment.