Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at main 4 lines 295 B view raw
1ALTER TABLE oauth_device ADD COLUMN trusted_at TIMESTAMPTZ; 2ALTER TABLE oauth_device ADD COLUMN trusted_until TIMESTAMPTZ; 3ALTER TABLE oauth_device ADD COLUMN friendly_name TEXT; 4CREATE INDEX IF NOT EXISTS idx_oauth_device_trusted ON oauth_device(trusted_until) WHERE trusted_until IS NOT NULL;