Skip to content

Commit 66ed33b

Browse files
committed
fix: RowLevlSecurityAwarePostgreSqlSchemaManager needs platform as 2nd argument
1 parent 0c292a3 commit 66ed33b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RowLevelSecurityAwarePostgreSqlConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ class RowLevelSecurityAwarePostgreSqlConnection extends Connection
1111
{
1212
public function getSchemaManager(): AbstractSchemaManager
1313
{
14-
return new RowLevelSecurityAwarePostgreSqlSchemaManager($this);
14+
return new RowLevelSecurityAwarePostgreSqlSchemaManager($this, $this->getDatabasePlatform());
1515
}
1616
}

0 commit comments

Comments
 (0)