Data-only
When to use it
Section titled “When to use it”- target tables already exist
- you only need to backfill or refresh data
- schema creation is handled separately
migration.toml
Section titled “migration.toml”schema = "app"data_only = trueworkers = 8
[source]type = "mysql"dsn = "root:root@tcp(127.0.0.1:3306)/source_db"
[target]dsn = "postgres://postgres:postgres@127.0.0.1:5432/target_db?sslmode=disable"Raw files: migration.toml