Skip to content

Instantly share code, notes, and snippets.

@diligasi
Created March 18, 2019 14:16
Show Gist options
  • Save diligasi/bbd6ba53f5cb10ede0ac2659694d8654 to your computer and use it in GitHub Desktop.
Save diligasi/bbd6ba53f5cb10ede0ac2659694d8654 to your computer and use it in GitHub Desktop.
Reset table sequences to it's max value
ActiveRecord::Base.connection.tables.each do |table_name|
ActiveRecord::Base.connection.reset_pk_sequence!(table_name)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment