export interface IMongoMigration { up(): Promise; down(): Promise; } export interface IDatabaseMigration { /** * ID of the migration, and it should be changed inorder to overwrite previous migration * In format _ */ id: string; /** * Name of the template */ name: string; up?(): Promise; down?(): Promise; }