This commit is contained in:
Ruslan Nigmatullin
2026-03-25 15:02:30 -07:00
parent 8c644a154b
commit 8d62dd3257
10 changed files with 285 additions and 152 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE remote_control_enrollments (
websocket_url TEXT NOT NULL,
account_id TEXT NOT NULL,
server_id TEXT NOT NULL,
server_name TEXT NOT NULL,
updated_at INTEGER NOT NULL,
PRIMARY KEY (websocket_url, account_id)
);