this repo has no description
1CREATE TABLE IF NOT EXISTS app_passwords ( 2 id UUID PRIMARY KEY DEFAULT gen_random_uuid(), 3 user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE, 4 name TEXT NOT NULL, 5 password_hash TEXT NOT NULL, 6 created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), 7 privileged BOOLEAN NOT NULL DEFAULT FALSE, 8 UNIQUE(user_id, name) 9);