Skip to content

Instantly share code, notes, and snippets.

@amcdnl
Created June 3, 2018 14:40
Show Gist options
  • Save amcdnl/0b3aedba5f8ec9060798b75c5f87eaad to your computer and use it in GitHub Desktop.
Save amcdnl/0b3aedba5f8ec9060798b75c5f87eaad to your computer and use it in GitHub Desktop.
@NgModule({
imports: [
NgxsModule.forRoot([]),
NgxsStoragePluginModule.forRoot({
migrations: [
{
version: 1,
key: 'zoo',
versionKey: 'myVersion',
migrate: (state) => {
return {
newAnimals: state.animals,
version: 2 // Important to set this to the next version!
}
}
}
]
})
],
})
export class MyModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment