* @inheritDoc
(name: string)
| 396 | * @inheritDoc |
| 397 | */ |
| 398 | async logMigration(name: string): Promise<void> { |
| 399 | await this.init(); |
| 400 | await this.storage.ensureTable?.(); |
| 401 | await this.storage.logMigration({ name }); |
| 402 | } |
| 403 | |
| 404 | /** |
| 405 | * @inheritDoc |
nothing calls this directly
no test coverage detected