11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
import {Injectable} from '../../../di'
|
|
import {MigrationEvent} from './MigrationEvent'
|
|
|
|
/**
|
|
* Event fired after a migration has been rolled-back.
|
|
*/
|
|
@Injectable()
|
|
export class RolledBackMigrationEvent extends MigrationEvent {
|
|
eventName = '@extollo/lib.RolledBackMigrationEvent'
|
|
}
|