mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { WritableDB } from '../Interface.std.js';
|
|
|
|
export default function updateToSchemaVersion1460(db: WritableDB): void {
|
|
db.exec(`
|
|
ALTER TABLE message_attachments
|
|
ADD COLUMN duration REAL;
|
|
`);
|
|
}
|