[PostgreSQL] Option for Drizzle reuse my `public` schema for the migrations table?
Hello! I am using local PostgreSQL for my app. I use
Is there an option for Drizzle so that it would just reuse my existing
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.