v1.0.0
data_migration
一個用於套用一連串遷移,將舊版本的資料結構更新至最新版本的函式庫。
3喜歡 20近 30 天下載160Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個用於應用一系列遷移,以將舊版本的資料結構更新至最新版本的程式庫。
^1.0.4^1.25.7^6.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
A library for applying a series of migrations to update old versions of data structures to the most recent one.
dependencies:
data_migration:
Create your set of migration
class CounterV1DataMigration implements DataMigration {
const CounterV1DataMigration();
@override
int get fromVersion => 1;
@override
int get toVersion => 2;
@override
Future<dynamic> migrate(dynamic data) async {
final counter = SimpleCounter(data as int);
return counter.toJson();
}
}
final migrator = DataMigrationManager(
[
CounterV1DataMigration(),
],
);
Apply migration on data
final migrated1 = await _migrator.migrateIfNeeded(
3,
fromVersion: 1,
);
In the example and tests, there are some examples of "data migration."