schema library
Classes
- Schema
- A Schema is a list of migrations and information about the schema the migrations act on. This class can be extended to introduce new Schema specific functionality and utilized by the migration engine. Ex: Each schema should handle its own restore logic instead of the MigrationEngine implementation. @Override restoreDbFromBackup(T schema){ schema.restore(); }