addition of archive server listing

This commit is contained in:
2026-08-26 11:22:52 +00:00
parent bf59249ed7
commit a239a76cc7
4 changed files with 67 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS system.settings (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
created_ts TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
INSERT INTO system.settings (id)
SELECT gen_random_uuid()
WHERE NOT EXISTS (SELECT 1 FROM system.settings);
CREATE INDEX idx__system__settings__id ON system.settings (id);