Add an API interface for performing DB migrations as required

This commit is contained in:
Oliver-Akins 2025-05-29 01:22:17 -06:00
parent 2567f5fb62
commit 1e007af52a
6 changed files with 83 additions and 0 deletions

View file

@ -23,4 +23,11 @@ export function registerMetaSettings() {
config: false,
requiresReload: false,
});
game.settings.register(__ID__, `lastVersion`, {
scope: `world`,
type: String,
config: false,
requiresReload: false,
});
};