phinx
phinx copied to clipboard
Include suffix in "using database" for sqlite
For sqlite, doing a migration/seed gives an output similar to following:
using adapter sqlite
using database ./data
where the we only print out the database name, but omit the suffix. We should show the database name and the suffix, e.g. ./data.sqlite3 for above.