feat: Can now select a bootstrap host and save the role mapping to database
Some checks failed
Run Check Script / check (pull_request) Failing after 33s

This commit is contained in:
2025-09-02 00:10:20 -04:00
parent 241980ebec
commit f6e665f990
8 changed files with 106 additions and 16 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS host_role_mapping (
id INTEGER PRIMARY KEY AUTOINCREMENT,
host_id TEXT NOT NULL,
role TEXT NOT NULL
);