In Rails console I can see the tables I have by issuing the command:
ActiveRecord::Base.connection.tables
I have an Oracle view table, and it is not in this list. In the console I can do a find on the view and get results. I was hoping something like:
ActiveRecord::Base.connection.views # No such thing
but that would be a nope. Any ideas?