Skip to content

Commit

Permalink
add timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Feb 21, 2024
1 parent d592037 commit 1bfe2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Projection/Projection/Store/DoctrineStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public function configureSchema(Schema $schema, Connection $connection): void
->setNotnull(false);
$table->addColumn('retry_attempt', Types::INTEGER)
->setNotnull(false);
$table->addColumn('retry_next', Types::DATETIME_IMMUTABLE)
$table->addColumn('retry_next', Types::DATETIMETZ_IMMUTABLE)
->setNotnull(false);

$table->setPrimaryKey(['id']);
Expand Down

0 comments on commit 1bfe2c2

Please sign in to comment.