I got this error when trying to register on my local test system:
I suppose there was something wrong with my database (user_id auto increment) after deleting the latest registered user. Don't know how this could happen..
Anyway, shouldn't the table
Code:
XF\Db\DuplicateKeyException: MySQL query error [1062]: Duplicate entry '17-1' for key 'active' src/XF/Db/AbstractStatement.php:217
INSERT INTO `xf_sv_multiple_account_token` (`user_id`, `active`, `token`, `token_id`, `token_date`) VALUES (?, ?, ?, ?, ?)
Anyway, shouldn't the table
xf_sv_multiple_account_token
(and maybe more tables) be purged too on user deletion? At the moment just xf_sv_user_registration_log
is purged.