How to consume existing supabase migration?

Llouisgv5/20/2023
I have a supabase migrations and would like to reuse them as a starter for drizzle. When trying to point drizzle migration to the supabase's migration, it throws the error:
Error: Can't find meta/_journal.json file


The only way I've found to migrate is to introspect the db for the initial migration and schema, which'd leave me to drop all the previous supabase migration.

Hope I'm not missing a configuration or docs section on this, thanks in advance!