1
0
Fork 0

Split DBStructure & View to avoid DB-calls and dependencies for basic operations

- new "Definition" classes vor DB and Views
- new "Writer" classes to create SQL definitions for DB and Views
- DBStructure & View are responsible to execute DB-querys
This commit is contained in:
Philipp Holzer 2022-07-12 23:21:16 +02:00
commit a910fd8864
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
30 changed files with 898 additions and 608 deletions

View file

@ -225,7 +225,7 @@ HELP;
$installer->resetChecks();
if (!$installer->installDatabase($basePathConf)) {
if (!$installer->installDatabase()) {
$errorMessage = $this->extractErrors($installer->getChecks());
throw new RuntimeException($errorMessage);
}