cakephp / phinx

PHP Database Migrations for Everyone
https://phinx.org
MIT License
4.46k stars 891 forks source link

Include suffix in "using database" for sqlite #2298

Closed MasterOdin closed 1 week ago

MasterOdin commented 1 month ago

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.