* @inheritDoc
(name: string)
| 405 | * @inheritDoc |
| 406 | */ |
| 407 | async unlogMigration(name: string): Promise<void> { |
| 408 | await this.init(); |
| 409 | await this.storage.ensureTable?.(); |
| 410 | await this.storage.unlogMigration({ name }); |
| 411 | } |
| 412 | |
| 413 | protected async init(): Promise<void> { |
| 414 | if (this.initialized) { |
nothing calls this directly
no test coverage detected