I'm using SQLite to store data locally. Currently, I have a version 1 database in use by the app and I want to change the database schema and upgrade it to version 2.
In Flutter's sqflite database, we have the onUpgrade
method to handle schema migration.
How can I achieve this in FlutterFlow Without Data Loss?
SQLite Database Schema Migration Without Data Loss ?
10
4 replies