Created
October 26, 2015 20:26
-
-
Save aliang/593f52e89ed86a2b4449 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
models = ActiveRecord::Base.descendants | |
models.each do |m| | |
last_id = m.last.id | |
m.connection.execute("ALTER SEQUENCE #{m.table_name}_id_seq RESTART WITH #{last_id}")"; | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment