Solved by dumping, dropping, then re-importing the table.
pg_dump -f v_users.sql -d fusionpbx -t v_users
DROP INDEX v_users_pkey;
DROP TABLE v_users;
cat v_users.sql | psql fusionpbx
----- Original Message -----
> I'm getting an error while trying to add a column to a table.
>
> ALTER TABLE v_users ADD COLUMN ldap_id SERIAL UNIQUE;
> ERROR: expected one dependency record for TOAST table, found 0
>
> Any ideas?