Skip to content

Commit 37a3f91

Browse files
committed
Fixing colliding cache key for the schema
1 parent 1064834 commit 37a3f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TDBMSchemaAnalyzer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function getCachePrefix(): string
7575
public function getSchema(): Schema
7676
{
7777
if ($this->schema === null) {
78-
$cacheKey = $this->getCachePrefix().'_schema';
78+
$cacheKey = $this->getCachePrefix().'_immutable_schema';
7979
if ($this->cache->contains($cacheKey)) {
8080
$this->schema = $this->cache->fetch($cacheKey);
8181
} else {

0 commit comments

Comments
 (0)