Unable to push changes to Supabase

When running the command "drizzle-kit push", I can't get past the "Pulling schema from database" phase.
I can do pretty much everything else, I haven't tested the studio though.
This is a T3 stack app.

This is the content of the drizzle.config.ts file:
export default defineConfig({
    out: "./src/server/db",
    schema: "./src/server/db/schema.ts",
    dialect: "postgresql",
    dbCredentials: {
        url: env.DATABASE_URL,
    },
});
Was this page helpful?