I was working with a Supabase project that relies on custom auth hooks, after a `supabase pull` I wasn't getting the `user_token` attribute on my users even though the `custom_access_token_hook` pgsql function was successfully pulled. I found [this github issue comment](https://github.com/orgs/supabase/discussions/22600#discussioncomment-9853672) which suggested adding this to `config.toml`, which solved the issue. ```toml ... [auth.hook.custom_access_token] enabled = true uri = "pg-functions://postgres/public/custom_access_token_hook" ... ```