PDS software with bells & whistles you didn’t even know you needed. will move this to its own account when ready.
0
fork

Configure Feed

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

at main 7 lines 254 B view raw
1CREATE TABLE IF NOT EXISTS user_blocks ( 2 user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE, 3 block_cid BYTEA NOT NULL, 4 PRIMARY KEY (user_id, block_cid) 5); 6 7CREATE INDEX IF NOT EXISTS idx_user_blocks_user_id ON user_blocks(user_id);