diff --git a/src/Projection/Projection/Store/DoctrineStore.php b/src/Projection/Projection/Store/DoctrineStore.php index 2b03090f7..ff8ebb619 100644 --- a/src/Projection/Projection/Store/DoctrineStore.php +++ b/src/Projection/Projection/Store/DoctrineStore.php @@ -165,7 +165,8 @@ public function configureSchema(Schema $schema, Connection $connection): void $table->addColumn('error_object', Types::BLOB) ->setNotnull(false); $table->addColumn('retry', Types::INTEGER) - ->setNotnull(true); + ->setNotnull(true) + ->setDefault(0); $table->setPrimaryKey(['name', 'version']); }