Hi, I have app at GAE and I decided to export all the data and import on my devel machine. So let's say user table line looks like this (there is just one user):
auth_user.id,auth_user.first_name,auth_user.last_name,auth_user.email,auth_user.password,auth_user.registration_key,auth_user.reset_password_key 11001,First,Last,x...@site.com,pass,key, When I import this localy this user gets ID=1 (I would expect 11001) That way when I try to import other stuff the reference to this table get's broken as other data references to the user.is 11001 and it's now 1. I get the same problem with other referenced data. I consider this as a bug - as I think if we export/import I don't have to remap all ID's manually but ID should remain as they were in the old database - I'm sure ID's can be forced, can they? Marcin