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
{{ message }}
This repository was archived by the owner on May 5, 2025. It is now read-only.
// Migration is anything that can upgrade or downgrade external state - commonly, but not limited to, database schemas.
//
// Each migration SHOULD be able to upgrade or downgrade freely, allowing any changes to be reverted with ease.
//
// Of course, this is not always possible.
// In the case of irreversible state change, the opposite function should return an error e.g. if an upgrade deletes something irrecoverably, have the corresponding downgrade function throw a descriptive error.