This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-04/src/sql/init_version_7.sql

12 lines
307 B
MySQL
Raw Normal View History

--
-- The format of data stored in the pubkeys table has changed. Let's
-- clear it, and the pubkeys from inventory, so that they'll
-- be re-downloaded.
--
DELETE FROM inventory WHERE objecttype = 1;
DELETE FROM pubkeys;
UPDATE sent SET status='msgqueued' WHERE status='doingmsgpow' or status='badkey';