'''For people who have already upgraded their database to version 22 or 23, this requires manual intervention on the database.'''
You have to remove the `cache` table and re-create it by hand:
{{{
DROP TABLE cache;
CREATE TABLE cache ( id text PRIMARY KEY, generation int );
}}}
(for SQLite; or the equivalent for your database)
See #8197.