schema.d.ts 328 B

123456789101112131415161718
  1. export interface Schema {
  2. /**
  3. * The collection to load the migrations from.
  4. */
  5. collection: string;
  6. /**
  7. * The version installed previously.
  8. */
  9. from: string;
  10. /**
  11. * The package to migrate.
  12. */
  13. package: string;
  14. /**
  15. * The version to migrate to.
  16. */
  17. to: string;
  18. }