rename postgres to standalonepostgres

This commit is contained in:
Andras Bacsai
2023-08-07 19:25:32 +02:00
parent a020bc872d
commit 20e1cd6d6b
10 changed files with 29 additions and 14 deletions

View File

@@ -48,6 +48,6 @@ class Project extends BaseModel
}
public function postgresqls()
{
return $this->hasManyThrough(Postgresql::class, Environment::class);
return $this->hasManyThrough(StandalonePostgres::class, Environment::class);
}
}