nextcloud25: 25.0.4 -> 25.0.5

Changes: https://github.com/nextcloud/server/compare/v25.0.4...v25.0.5
This commit is contained in:
Maximilian Bosch 2023-03-24 19:21:52 +01:00
parent f9bf71d5f1
commit 8b4ba70235
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A
2 changed files with 3 additions and 3 deletions

View File

@ -45,8 +45,8 @@ in {
};
nextcloud25 = generic {
version = "25.0.4";
sha256 = "sha256-wyUeAIOpQwPi1piLNS87Mwgqeacmsw/3RnCbD+hpoaY=";
version = "25.0.5";
sha256 = "sha256-xtxjLYPGK9V0GvUzXcE7awzeYQZNPNmlHuDmtHeMqaU=";
};
nextcloud26 = generic {

View File

@ -138,7 +138,7 @@ index af816c7ad04..e49e5508e15 100644
- // Therefore we assume that the database is only used by one user/service which is Nextcloud
- // Additional services should get installed in a separate database in order to stay secure
- // Also see https://www.postgresql.org/docs/15/ddl-schemas.html#DDL-SCHEMAS-PATTERNS
- $connectionMainDatabase->executeQuery('GRANT CREATE ON SCHEMA public TO ' . addslashes($this->dbUser));
- $connectionMainDatabase->executeQuery('GRANT CREATE ON SCHEMA public TO "' . addslashes($this->dbUser) . '"');
- $connectionMainDatabase->close();
- }