Notification Profiles: Normalize ids

This commit is contained in:
Scott Nonnenberg
2025-10-22 09:55:38 +10:00
committed by GitHub
parent 77d8758e2c
commit fd12f18cee
5 changed files with 27 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { LoggerType } from '../../types/Logging.std.js';
import type { WritableDB } from '../Interface.std.js';
import { sql } from '../util.std.js';
export default function updateToSchemaVersion1490(
db: WritableDB,
logger: LoggerType
): void {
const [query, params] = sql`
DELETE FROM notificationProfiles
WHERE id != lower(id);
`;
const result = db.prepare(query).run(params);
logger.info(
`Removed ${result.changes} notification profiles with non-lowercase ids`
);
}