I have an sql dump file which I imported to my database. All of the records from this sql dump has id's starting from 900 to 2500.
So the problem is that If I will create new record from my rails app, it will get automatic id = 1, the next will get 2,3,4 etc. I guess when I i will create my 900s records, I will get an error, since id=900 already exists.
Note: I cant change my id's to start from 1 in my sql dump file, since another table references it by id.
Is there any solution?
I use PostgreSQL