journey

Last updated:

0 purchases

journey Image
journey Images
Add to Cart

Description:

journey

Journey #
As soon as your app is published it goes on this wild journey and likely receives new interesting features to benefit
your users. Along the way there will be times when you need to run one-time migrations to prepare for these exciting
new features!
This package helps you run one-time migrations in your app incrementally, while trying to reduce impact on app start-up
time as much as possible.
Features #
Run incremental migrations.
Getting started #
To use Journey, you will need to include this package in your pubspec:
# pubspec.yaml
dependencies:
journey:
copied to clipboard
Usage #
Create migration implementations for the all the migrations in your app:
class MigrateUserModelToHaveMultipleJourneys extends Migration {
String get id => "migrate_user_model_to_have_multiple_journeys";

@override
Future<MigrationResult> migrate() async {
// change the data model of your underlying data structure
return MigrationResult.successful;
}
}

class MigrateTokensToNativeSecureStorage extends Migration {
String get id => "migrate_tokens_to_native_secure_storage";

@override
Future<MigrationResult> migrate() async {
// read the tokens from the previous storage, and move them to the secure storage
return MigrationResult.successful;
}
}
copied to clipboard
Once you've defined your migrations, define the journey:
final journey = Journey(
migrations: [
MigrateUserModelToHaveMultipleJourneys(),
MigrateTokensToNativeSecureStorage(),
],
);
copied to clipboard
After defining the journey, execute the migrations at an appropriate time in your app:
// U can use the reports for analytical purposes
final reports = await journey.migrate();
copied to clipboard
If at some point, or for testing, you want to execute migrations again, you can rollback migrations:
// rollback the migrations
await journey.rollback();

// reset all migration reports
await journey.reset();
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.