Our Personal Data Server from scratch!
0

Configure Feed

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

tranquil-pds / migrations / 20251244_did_web_overrides.sql
322 B 7 lines
1CREATE TABLE IF NOT EXISTS did_web_overrides ( 2 user_id UUID PRIMARY KEY REFERENCES users(id) ON DELETE CASCADE, 3 verification_methods JSONB NOT NULL DEFAULT '[]', 4 also_known_as TEXT[] NOT NULL DEFAULT '{}', 5 created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), 6 updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() 7);