- Issue created by @anaconda777
Hi,
I have a site which is importin a lot of content with migrate modules. It worked around 3 years untill
the queue autoincrement became full.
SQLSTATE[22003]: Numeric value out of range: 167 Out of range value for column 'item_id'
This caused wsod on almost all admin pages, like status report. But the site was working.
I had to fix it with this sql statement:
ALTER TABLE queue AUTO_INCREMENT = 1
What about changing the field type to something which allows more than the int(10) does?
Bigint?
Active
10.1 ✨