Manual Migrations
Guys quick question, I've migrated some of the migrations manually by running the SQL queries, how do I update the __drizzle_migrations table to match the current state?
so that I can use
npx drizzle-kit migrate
2 Replies
that's not recommeneded, if u 100% sure it's matching I guess the easiest would be run migrations in another db and copy the related entries to ur migrations
or check the hash urself
Again this shouldnt be the way to work with migrations you defeating the whole porpouse if migrations with this
Good idea thanks