fix(docs): remove mention of subcommand that wasn't added

I intended to add subcommands to `sqlx-cli` to manage test databases but I wanted to get #2001 finished and out the door so we can start using it ASAP.
This commit is contained in:
Austin Bonander 2022-08-02 18:30:27 -07:00 committed by Austin Bonander
parent cb52c7c62b
commit 7809ff4b86

View file

@ -58,8 +58,8 @@ Test databases are automatically cleaned up as tests succeed, but failed tests w
to facilitate debugging. Note that to simplify the implementation, panics are _always_ considered to be failures,
even for `#[should_panic]` tests.
If you have `sqlx-cli` installed, you can run `sqlx test-db cleanup` to delete all test databases.
Old test databases will also be deleted the next time a test binary using `#[sqlx::test]` is run.
To limit disk space usage, any previously created test databases will be deleted the next time a test binary using
`#[sqlx::test]` is run.
```rust,no_run
# #[cfg(all(feature = "migrate", feature = "postgres"))]