Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at d1902506a592df31497ba6f79afedf57e8452da3 7 lines 250 B view raw
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;