So this may sound a bit awkward, but I would like to have the database structure (tables, fkeys, columns) as a projection on Rails models e.g. the model
Table < ActiveModel
which would respond to call like
Table.find_by_name('Account').columns.each
and so on. Is there any gem implementing something similar?
Update:
Basically there is a project that would query some remote open data sources (like world bank) and generate tables on the fly, and this is done by the database (yeah, sounds funny). The fact is that I have to show the the tables involved in a given query, distinguish which of them are local and which have just been generated, also draw the foreign keys and the columns.