Skip to content

Commit

Permalink
try guid for aggregate id
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Mar 4, 2024
1 parent afc4913 commit 248c1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Store/DoctrineDbalStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public function configureSchema(Schema $schema, Connection $connection): void
$table->addColumn('aggregate', Types::STRING)
->setLength(255)
->setNotnull(true);
$table->addColumn('aggregate_id', Types::STRING)
$table->addColumn('aggregate_id', Types::GUID)
->setLength(36)
->setNotnull(true);
$table->addColumn('playhead', Types::INTEGER)
Expand Down

0 comments on commit 248c1dc

Please sign in to comment.