mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Rename files
This commit is contained in:
15
ts/sql/migrations/68-drop-deprecated-columns.std.ts
Normal file
15
ts/sql/migrations/68-drop-deprecated-columns.std.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { Database } from '@signalapp/sqlcipher';
|
||||
|
||||
export default function updateToSchemaVersion68(db: Database): void {
|
||||
db.exec(
|
||||
`
|
||||
ALTER TABLE messages
|
||||
DROP COLUMN deprecatedSourceDevice;
|
||||
ALTER TABLE unprocessed
|
||||
DROP COLUMN deprecatedSourceDevice;
|
||||
`
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user