All checks were successful
continuous-integration/drone/push Build is passing
9 lines
229 B
TypeScript
9 lines
229 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 {}
|