Skip to content

Instantly share code, notes, and snippets.

@rafaelqueiroz88
Created March 10, 2023 14:01
Show Gist options
  • Save rafaelqueiroz88/357e68736691255487e4473c464362e6 to your computer and use it in GitHub Desktop.
Save rafaelqueiroz88/357e68736691255487e4473c464362e6 to your computer and use it in GitHub Desktop.
Listing all models in a Rails project
Rails.application.eager_load!
ActiveRecord::Base.descendants # all models and its attributes
ApplicationRecord.descendants.collect(&:name) # filtering model names
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment