I'm using latest drizzle orm 0.45.1 on expo, with expo driver and SQLite database. It seems to work well for now except the hash is an empty string in __drizzle_migrations table
This causes issues when adding new migrations, as I believe drizzle use it to identify which migration is applied
I also noticed the ID is null but I found a github issue regarding that (https://github.com/drizzle-team/drizzle-orm/issues/1227), but it seems unrelated to the hash, it's due to drizzle using SERIAL for the ID which is not supported on SQLite.
I can accept the null ID but I really need to fix the hash before sending this feature to prod or it will prevent from adding new migrations. Anyone encountered this?
I followed the drizzle documentation to integrate with Expo, this is my drizzle.config.ts