Migrations
HELLO THERE! Do YOU want to write a migrations? You've come to the right place! Here are your steps!!
- Head on over to the
Migrator class - Increment
CURRENT_VERSION - Write a new
migrateToNfunctions - Add your
migrateToNfunction into the static block - Add a javadoc to your
migrateToNfunction explaining what changed. You can use the other functions for reference
Migrations should be as stand-alone as possible. You should aim to not rely on much code outside the migrations
package. Reason being that that code might change and break older migrations. Especially avoid (de)serializing
things into pojo's (unless those pojo's were written specifically for that migration).