just testing the environment
Some checks failed
Tests / test (push) Has been cancelled

This commit is contained in:
tom.hempel
2026-05-20 07:10:08 +02:00
parent 2a11dfd0d1
commit 06fc134299
56 changed files with 1890 additions and 361 deletions

View File

@ -3,9 +3,15 @@
// Shared helpers for opening, creating, and saving the encrypted SQLite database.
require_once __DIR__ . '/common.php';
define('QDB_PATH', __DIR__ . '/uploads/questionnaire_database');
define('QDB_LOCK', __DIR__ . '/uploads/.qdb_lock');
define('QDB_SCHEMA', __DIR__ . '/schema.sql');
if (!defined('QDB_PATH')) {
define('QDB_PATH', __DIR__ . '/uploads/questionnaire_database');
}
if (!defined('QDB_LOCK')) {
define('QDB_LOCK', __DIR__ . '/uploads/.qdb_lock');
}
if (!defined('QDB_SCHEMA')) {
define('QDB_SCHEMA', __DIR__ . '/schema.sql');
}
define('QDB_VERSION', 3);
/**