Exported mysql WordPress database, then filled it back. Now nothing can be added to the postmeta table, issues: # 1062 - Duplicate entry '0' by key 'PRIMARY'
For example for this query: INSERT INTO fbi_postmeta ( meta_id , post_id , meta_key , meta_value ) VALUES ('', '0', 'test', 'test')
If you specify the meta_id manually, it works fine.
As far as I understand, when specifying meta_id = ", the value of meta_id is taken not from the last value in the table, but from 0.
How to make so that was taken from the last?

fbi_postmetaAUTO_INCREMENT = 555", but it doesn't work - Oleg