Skip Migrations
I'm converting a project from Prisma to Drizzle. I've used
pull
to get the same schema that Prisma has and I've generated migrations based off of that schema. I want those migrations so that when a new dev onboards they can use them to build their local DB. However, I don't want those migrations to run against our production DB.
I was hoping that I could manually insert a row into the drizzle_migrations table to tell drizzle to skip this first migration, but I think differing hash is the problem.
Is there a recommended solution for this problem?
Thanks in advance!0 Replies