mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
22 lines
587 B
TypeScript
22 lines
587 B
TypeScript
// 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`
|
|
);
|
|
}
|