mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 00:48:19 +01:00
Store receivedAtCounter separately for unprocessed
This commit is contained in:
27
ts/sql/migrations/54-unprocessed-received-at-counter.ts
Normal file
27
ts/sql/migrations/54-unprocessed-received-at-counter.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
// 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 updateToSchemaVersion54(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 54) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(
|
||||
`
|
||||
ALTER TABLE unprocessed ADD COLUMN receivedAtCounter INTEGER;
|
||||
`
|
||||
);
|
||||
|
||||
db.pragma('user_version = 54');
|
||||
})();
|
||||
logger.info('updateToSchemaVersion54: success!');
|
||||
}
|
||||
Reference in New Issue
Block a user