Closed
Description
Going here:
https://db-migrate.readthedocs.io/en/latest/
https://db-migrate.readthedocs.io/en/latest/Getting%20Started/the%20commands/
I do not see sync, which is in my --help
`db-migrate --help
Usage: db-migrate [up|down|reset|sync|create|db|seed|transition] [[dbname/]migrationName|all] [options]db-migrate --version
0.10.0-beta.20
`
Also, if I drop my database, then I can't figure out how to get it back, using db-migrate:
`> db-migrate db:drop app_test_database
--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/38632664-sync-is-missing-from-the-docs-and-unknown-database-problem?utm_campaign=plugin&utm_content=tracker%2F73887&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F73887&utm_medium=issues&utm_source=github).db-migrate db:create app_test_database
[ERROR] Error: ER_BAD_DB_ERROR: Unknown database 'app_test_database'db-migrate up
[ERROR] Error: ER_BAD_DB_ERROR: Unknown database 'app_test_database'`