You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently as of v1.0.0, the schema migration feature of this data system does not support migrating data that has existed before the schema was active. This makes it difficult to migrate older data to work with this system.
This can be supported by adding a function to the schema migration module with a keyname of ? -> 1. This function would take any data that is missing the schema version metadata and update it to conform to the 1st schema version. Here's an example of a game migrating its existing data to utilize this system's schema features:
Currently as of
v1.0.0
, the schema migration feature of this data system does not support migrating data that has existed before the schema was active. This makes it difficult to migrate older data to work with this system.This can be supported by adding a function to the schema migration module with a keyname of
? -> 1
. This function would take any data that is missing the schema version metadata and update it to conform to the 1st schema version. Here's an example of a game migrating its existing data to utilize this system's schema features:Old data (prior to using schemas):
Data schema version 2:
Schema migrations:
The text was updated successfully, but these errors were encountered: