style(db): apply prettier formatting to migration 019

Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
This commit is contained in:
Codex
2026-06-08 21:38:24 +09:00
parent dca56d9493
commit 5f06673ac6

View File

@@ -19,7 +19,8 @@ import type { SchemaMigrationDefinition } from './types.js';
* number so the live deployment gets them. It is a no-op on databases where
* migration 015 already ran (fresh installs), thanks to the column guards.
*/
export const TURN_PROGRESS_TEXT_RECOVERY_MIGRATION: SchemaMigrationDefinition = {
export const TURN_PROGRESS_TEXT_RECOVERY_MIGRATION: SchemaMigrationDefinition =
{
version: 19,
name: 'turn_progress_text_recovery',
apply(database: Database) {
@@ -32,4 +33,4 @@ export const TURN_PROGRESS_TEXT_RECOVERY_MIGRATION: SchemaMigrationDefinition =
);
}
},
};
};