Wappler does not migrate SQLite database

What kind of alter are you missing because it all looks good to me.

Here is what happens in the background:

The SQLite database file you create in Wappler with its Knex migration is a dev only database.

In the runtime in electron or a mobile app based on capacitor, when the app is started for first time, a local user SQLite database file is created specially for this user.

To create it, and later on update its schema runtime, special sql migration statements are used that are stored in the connection.js sql statements list with a version number to upgrade to.

So those upgrades are done automatically runtime.
The sql statements are derived from the Wappler migration Knex files that are generated and used in Wappler by its own database manager to create and update the dev database file. So they should have the same functionality.

So just note the big difference that the SQLite database file and migrations you are checking in Wappler are dev only and the runtime of your app a whole new database is created for the running user only locally - usually in they documents folder