Our Personal Data Server from scratch!
0

Configure Feed

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

tranquil-pds / migrations / 20251242_invite_code_for_account.sql
179 B 2 lines
1ALTER TABLE invite_codes ADD COLUMN IF NOT EXISTS for_account TEXT NOT NULL DEFAULT 'admin'; 2CREATE INDEX IF NOT EXISTS idx_invite_codes_for_account ON invite_codes(for_account);