Han Qiao

Results 436 comments of Han Qiao

Hi, could you try running with `supabase db reset --debug` flag to check the detailed error log?

Hello, thanks for following up on this issue. If toggling `pg_graphql` extension doesn't work, you might need to grant permissions manually to `postgres` role. Could you run the following statements...

Hi @thomasmol, is your `challenges` table created in `seed.sql` or a separate migration file? DDL statements like create table are not designed to be used in `seed.sql`. To create a...

Closing this as won't fix because docker is a prerequisite for using the CLI.

I will close this issue as fixed. If you are using custom postgres images like `timescale/timescaledb-ha:pg14-latest`, remember to run migrations to setup initial schemas. These are open sourced in our...

I believe this was an issue with an old version of self-hosted studio. The `Templates` page is no longer shown and you need to use `GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE` to configure a url...

We can consider reading the pg-meta version from a temporary file, like `supabase/.temp/pgmeta-version`. We do the same for [db](https://github.com/supabase/cli/blob/main/internal/utils/config.go#L466), auth, and other images when user links their local project to...

> It looks like we can't reach online pgmeta api You are right. It's not open to public directly but some of our platform api routes proxy to pgmeta, like...

@S96EA The scope of this ticket also includes syncing `auth.email` configs which requires additional api changes. I think the ideal end goal would be an IaaS compatible solution that allows...

Hmm I initially thought it's ok to default to Y because user passing in `--linked` flag is already expressing explicit intent to reset the remote database. And we are just...