Hello, I started my project with diesel, but later switched to sqlx. But I already have diesel migrations deployed. Is there an easy way to start using sqlx migrator?

$ select * from _sqlx_migrations;
version | description | installed_on | success | checksum | execution_time
$ select * from __diesel_schema_migrations;
    version     |           run_on

Diesel migrations table is quite simple, while I'm not sure what is in sqlx's one. Did anyone write some migration from diesel to sqlx? Or any other methods?

I would like to avoid pg_dump-ing database schema and using it as a single migration, because different sites have different migrations...

crosspost

Source: View source