Interesting observation.
All pk_i_id in t_region seems to be similar to the previous ones except that they start with different number now. So for instance:
(2858791, 'PL', 'Warmia-Masuria', 1, 'warmia-masuria'),
(5337492, 'PL', 'Lower Silesia', 1, 'lower-silesia'),
vs.
(3858791, 'PL', 'Warmia-Masuria', 1, 'warmia-masuria'),
(6337492, 'PL', 'Lower Silesia', 1, 'lower-silesia'),
So all the numbers with 2 in the first place, now have 3 in that position. The same with 5 > 6.The rest of the numbers is the same.
Similar with cities, i.e. pk_i_id and fk_i_region_id :
(2776808, 2858785, 'PL', 'Abramów', 1, 'abramow', 51.45647, 22.31521),
(5079846, 5337492, 'PL', 'Pasiecznik', 1, 'pasiecznik', 50.9568, 15.57209),
vs.
(3776808, 3858785, 'PL', 'Abramów', 1, 'abramow', 51.45647, 22.31521),
(6079846, 6337492, 'PL', 'Pasiecznik', 1, 'pasiecznik', 50.9568, 15.57209),
So why?
I think I could just change (2 > (3 and (5 > (6 , save the file and import it. Older entries would have older IDs. Am I thinking right?