flutter_quick_db 0.4.0
flutter_quick_db: ^0.4.0 copied to clipboard
A dead simple Flutter database package built on top of the awesome Sembast library, which offers code generation, simplifying database creation in your Flutter app
0.4.0 #
- Replaced
DataStoreEntitymixin withStringDataStoreandIntDataStoremixins - Merged
create(T data)andupdate(T data)methods intoupsert(T data)inDataStoreclass - Replaced
createMany(List<T> data)method withupsertMany(List<T> data)inDataStoreclass
0.3.0 #
- Removed
nameandpathfields from@QuickDatabaseannotation - Changed
modelfield of@QuickDatabasefrom a list to a map of store names to types
0.2.0 #
- Added
updatefunction toAbstractDataStoreclass - Removed
idparameter fromAbstractDataStore.createfunction
0.1.0 #
- Implemented code generator for
@QuickDatabaseannotation - Included
exampleapp for reference