signalmeow/store: fix missing columns in signalmeow_backup_chat table

This commit is contained in:
Tulir Asokan 2025-02-13 14:59:44 +02:00
parent 50b9a51c1e
commit 79776c13bc
2 changed files with 40 additions and 1 deletions

View file

@ -1,4 +1,4 @@
-- v0 -> v19 (compatible with v13+): Latest revision
-- v0 -> v20 (compatible with v13+): Latest revision
CREATE TABLE signalmeow_device (
aci_uuid TEXT PRIMARY KEY,
@ -136,6 +136,9 @@ CREATE TABLE signalmeow_backup_chat (
recipient_id BIGINT NOT NULL,
data bytea NOT NULL,
latest_message_id BIGINT,
total_message_count INTEGER,
PRIMARY KEY (account_id, chat_id),
CONSTRAINT signalmeow_backup_chat_device_fkey FOREIGN KEY (account_id)
REFERENCES signalmeow_device (aci_uuid) ON DELETE CASCADE ON UPDATE CASCADE,

View file

@ -0,0 +1,36 @@
// mautrix-signal - A Matrix-signal puppeting bridge.
// Copyright (C) 2025 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package upgrades
import (
"context"
"go.mau.fi/util/dbutil"
)
func init() {
Table.Register(-1, 20, 13, "Add missing columns for backup chat table", dbutil.TxnModeOn, func(ctx context.Context, db *dbutil.Database) (err error) {
var exists bool
if exists, err = db.ColumnExists(ctx, "signalmeow_backup_chat", "latest_message_id"); err == nil && !exists {
_, err = db.Exec(ctx, `
ALTER TABLE signalmeow_backup_chat ADD COLUMN latest_message_id BIGINT;
ALTER TABLE signalmeow_backup_chat ADD COLUMN total_message_count INTEGER;
`)
}
return
})
}