Skip to content

Instantly share code, notes, and snippets.

@garethrees
Created November 8, 2018 17:16
Show Gist options
  • Save garethrees/de65056a76315908688ae41b0e006f80 to your computer and use it in GitHub Desktop.
Save garethrees/de65056a76315908688ae41b0e006f80 to your computer and use it in GitHub Desktop.
Check maximum ID size of ActiveRecord tables
# Oops https://m.signalvnoise.com/update-on-basecamp-3-being-stuck-in-read-only-as-of-nov-8-9-22am-cst-c41df1a58352
ids = ActiveRecord::Base.descendants.map do |klass|
begin
klass.maximum(:id)
rescue
nil
end
end
ids.compact.sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment