-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementing on a new db #59
Comments
What can you tell me about your database setup? Is it related to #33? |
It's a brand new, clean db. I doubt it's related to #33 , but it is possible. I am using a custom db name though |
Is it configured in any way, or is it 'out of the box' Postgres, for example from Dockerhub? What Postgres version is it? I assume you're using the latest version of this library? Custom database name should be fine. There are plenty of tests for that. |
It's a Dockerfile based on the latest version of gitpod/workspace-postgres |
Are you able to provide a reproduction? I'm not sure there's much I can do otherwise. I tried running the tests against |
I am running across a similar issue.. I believe it would occur if the migrations folder is outside of the users current schema search path in postgres .. in my case migrations is in the auth schema.. but if I check the users default search_path for the user connecting to the postgres instance .. it shows $user, public .. so it doesn't find the migrations table.. applying a simple
solved the issue |
Even after How do I revert the I'm trying to use it with Supabase |
@CanRau Same. Any solution? |
Am using currently https://github.com/urbica/pg-migrate |
@CanRau Thanks |
Check your migration file ("rolledUp"). If it contains something like this: SELECT pg_catalog.set_config('search_path', '', false); try removing this line |
I am attempting to use this library to bootstrap a developer environment with GitPod. However, when I run the one script that sets up the entire db, I am getting this error:
This is the code block where the error is originating:
The text was updated successfully, but these errors were encountered: