Our Personal Data Server from scratch!
0

Configure Feed

Select the types of activity you want to include in your feed.

tranquil-pds / migrations / 20251231_server_config.sql
250 B 7 lines
1CREATE TABLE IF NOT EXISTS server_config ( 2 key TEXT PRIMARY KEY, 3 value TEXT NOT NULL, 4 updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() 5); 6 7INSERT INTO server_config (key, value) VALUES ('server_name', 'Tranquil PDS') ON CONFLICT DO NOTHING;