Add ADB management and live car telemetry

This commit is contained in:
2026-07-31 22:23:12 +02:00
parent 34b31c4caf
commit 0e4ce931ec
12 changed files with 911 additions and 23 deletions
+9
View File
@@ -60,6 +60,15 @@ function migrate(database: CompanionDatabase): void {
);
CREATE INDEX IF NOT EXISTS job_runs_created_idx ON job_runs(created_at DESC);
CREATE TABLE IF NOT EXISTS adb_shortcuts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
target_type TEXT NOT NULL CHECK (target_type IN ('component', 'package')),
target_value TEXT NOT NULL,
created_at TEXT NOT NULL,
UNIQUE(target_type, target_value)
);
`);
database