Error: Destination DB Exists FAIL
Create or grant access to the target database and rerun migration pre-flight.
Meaning
Destination database name is missing or inaccessible with configured credentials.
Mitigation
- Create target schema if it does not exist.
- Grant destination DB user privileges on that schema.
- Verify exact database name (case/typo checks).
- Run pre-flight again and verify PASS.
Example
mysql -h <db_host> -P <db_port> -u <db_user> -p
CREATE DATABASE <db_name>;