export interface MigrationInterface { migrationName: string; up(): Promise; down(): Promise; }