Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/small-bugs 7 lines 322 B view raw
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);