[Store] Switch db version for testing
This commit is contained in:
parent
9d5296d4e0
commit
3441fb4964
|
@ -55,7 +55,7 @@ class Store {
|
|||
_init() async {
|
||||
var databasePath = await getDatabasesPath();
|
||||
String path = p.join(databasePath, "FluffyMatrix.db");
|
||||
_db = await openDatabase(path, version: 8,
|
||||
_db = await openDatabase(path, version: 10,
|
||||
onCreate: (Database db, int version) async {
|
||||
await createTables(db);
|
||||
}, onUpgrade: (Database db, int oldVersion, int newVersion) async {
|
||||
|
|
Loading…
Reference in a new issue