1
0
Fork 0
mirror of https://github.com/mautrix/signal.git synced 2026-05-16 06:06:54 -04:00
mautrix-signal/pkg/signalmeow/store/upgrades/11-aci-to-account-id.sql

6 lines
430 B
MySQL
Raw Permalink Normal View History

-- v11: Rename our_aci_uuid columns to account_id
ALTER TABLE signalmeow_identity_keys RENAME COLUMN our_aci_uuid TO account_id;
ALTER TABLE signalmeow_profile_keys RENAME COLUMN our_aci_uuid TO account_id;
ALTER TABLE signalmeow_sender_keys RENAME COLUMN our_aci_uuid TO account_id;
ALTER TABLE signalmeow_groups RENAME COLUMN our_aci_uuid TO account_id;
ALTER TABLE signalmeow_contacts RENAME COLUMN our_aci_uuid TO account_id;