You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Wipe local data (force re-seed)**: `docker compose down -v`
48
+
49
+
## Troubleshooting
50
+
51
+
### "Tenant or user not found" during dump
52
+
This usually means your `SESSION_POOLER` username is just `postgres`. Supabase requires the format `postgres.PROJECT_REF`.
53
+
54
+
### Tables not in `public` schema
55
+
The script automatically patches the dump to ensure tables are placed in the `public` schema. If you manually imported a dump, ensure you've installed the required extensions first.
56
+
57
+
### Re-seeding
58
+
The script skips seeding if it detects existing tables in the `public` schema. To force a re-seed, run `docker compose down -v` before running the setup script.
0 commit comments