chore: fix ota server

This commit is contained in:
Nuxgrid
2026-07-11 22:30:38 +02:00
parent 256373b913
commit f9c821f14f
3 changed files with 24 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS releases (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
runtime_version VARCHAR(255) NOT NULL,
path VARCHAR(255) NOT NULL,
timestamp TIMESTAMP NOT NULL,
commit_hash VARCHAR(255) NOT NULL,
commit_message VARCHAR(255) NOT NULL,
update_id VARCHAR(255)
);