Is it possible to install in rails on a model that depends on a join from two tables? This would mean that in order for the model record to be found / updated / destroyed, there must be both records in both database tables linked to each other in the join. The model will be just columns of both packed tables, which can then be used for forms, etc. So when a model is created / updated, is it just one hash of the form variable that applies to the model?
Is this possible in Rails 2 or 3?
source
share