diff --git a/docs/SchemaMigration.md b/docs/SchemaMigration.md index 8cf0018..9bd49b6 100644 --- a/docs/SchemaMigration.md +++ b/docs/SchemaMigration.md @@ -23,11 +23,11 @@ public DecorRepository (PersistenceContext ctx) { super(ctx); - ctx.registerMigration(DecorRecord.class, + ctx.registerMigration(DecorRecord.class, new SchemaMigration.Rename(17004, "scale", DecorRecord.ACTOR_SCALE)); ctx.registerMigration(DecorRecord.class, new SchemaMigration.Drop(17004, "offsetX")); ctx.registerMigration(DecorRecord.class, new SchemaMigration.Drop(17004, "offsetY")); - ctx.registerMigration(DecorRecord.class, + ctx.registerMigration(DecorRecord.class, new SchemaMigration.Retype(17004, DecorRecord.FURNI_SCALE)); } ``` diff --git a/docs/SimpleCodeExample.md b/docs/SimpleCodeExample.md index ca3d8e3..da8cc45 100644 --- a/docs/SimpleCodeExample.md +++ b/docs/SimpleCodeExample.md @@ -150,4 +150,4 @@ public class PersonRepository extends DepotRepository } ``` -See the [example queries](ExampleQueries) page for examples of other kinds of queries. +See the [example queries](ExampleQueries.md) page for examples of other kinds of queries.