Drop deprecated SQL columns
This commit is contained in:
parent
54aa0d39b9
commit
c286e0f9c6
2 changed files with 33 additions and 1 deletions
31
ts/sql/migrations/68-drop-deprecated-columns.ts
Normal file
31
ts/sql/migrations/68-drop-deprecated-columns.ts
Normal file
|
@ -0,0 +1,31 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { Database } from 'better-sqlite3';
|
||||
|
||||
import type { LoggerType } from '../../types/Logging';
|
||||
|
||||
export default function updateToSchemaVersion68(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 68) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(
|
||||
`
|
||||
ALTER TABLE messages
|
||||
DROP COLUMN deprecatedSourceDevice;
|
||||
ALTER TABLE unprocessed
|
||||
DROP COLUMN deprecatedSourceDevice;
|
||||
`
|
||||
);
|
||||
|
||||
db.pragma('user_version = 68');
|
||||
})();
|
||||
|
||||
logger.info('updateToSchemaVersion68: success!');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue