init_version_7.sql
1 -- 2 -- The format of data stored in the pubkeys table has changed. Let's 3 -- clear it, and the pubkeys from inventory, so that they'll 4 -- be re-downloaded. 5 -- 6 7 DELETE FROM inventory WHERE objecttype = 1; 8 9 DELETE FROM pubkeys; 10 11 UPDATE sent SET status='msgqueued' WHERE status='doingmsgpow' or status='badkey';