I’m using PostgreSQL database on Rails 2.3.8 and I need to restart auto increment ID on my table. How can I do that?
I’m using PostgreSQL database on Rails 2.3.8 and I need to restart auto increment
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do it directly in PostgreSQL using “alter sequence”: http://www.postgresql.org/docs/current/static/sql-altersequence.html
Particularly “restart with”
I don’t know how you would do it via the rails abstraction.