[PostgreSQL] Option for Drizzle reuse my `public` schema for the migrations table?
Hello! I am using local PostgreSQL for my app. I use
migrate()
to push my DB structure changes. In turn Drizzle creates the schema drizzle
and under it a table __drizzle_migrations
to keep track of executed migrations.
Is there an option for Drizzle so that it would just reuse my existing public
schema rather than creating that separate drizzle
schema? the reason is because I want the convenience of backing up a single schema.1 Reply
I'm also very interested in this. Haven't found a solution yet apart from running the migrations through another migration library (should work with db-migrate, for example)