I have two models that are not related (in the db sense) but have some common columns (Name, Email, etc.).
Class Account < ActiveRecord::Base
end
Class LegacyAccount < ActiveRecord::Base
end
For various reasons, I cannot merge these into a single model or do STI. But I would like a simple view that displays all records from both models in a nice table (possibly sorted by a common field like "name").
Is it possible to do a find/query from both models? Or can I do two finds and merge the resulting arrays so they are sorted? Can I use some intermediate model to merge both?