Table household_items { id uuid [pk, default: `gen_random_uuid()`] name text [not null] category text location text details jsonb [not null, default: `'{}'`] notes text created_at timestamptz [not null, default: `now()`] updated_at timestamptz [not null, default: `now()`] indexes { category } } Table household_vendors { id uuid [pk, default: `gen_random_uuid()`] name text [not null] service_type text phone text email text website text notes text rating int last_used date created_at timestamptz [not null, default: `now()`] indexes { service_type } }