I am facing an issue with the cordova sqlite database not getting migrated and then deleted.
This is the code using cordova in the previous version:
this.createdb = this.sqlite.create({ name: 'myapp.db', location: 'default' });
In my capacitor code, I have this:
await this.sqliteConnection.addSQLiteSuffix();
await this.sqliteConnection.deleteOldDatabases();
When I use TestFlight to revert back to a cordova version of the app, all my data that I saved before updating to the new app is there. The new data does not show up in the app when I update.