I can use Drizzle kit to create and run schema changes to my database, but I don't know how to make data migrations with it. I've got experience from Django where you can manually create migration files which also support custom Python code. There you can run whatever code/SQL etc. to insert data in to the db. It also makes sure that the (data) migration is being run only once.
How can I achieve this with Drizzle? The drizzle-kit generate:pg
checks only for schema changes so I can't add only data with it.
you probably got this resolved but you need to run this script
and in the index.ts file, have somethine like this :