I need to DRY up some of my tables. Here is the situation: I have a
number of objects that habtm name objects. What I need is some kind
of polymorphic join model so each object can relate to the same names
table. An example:
oranges table
orange row
orange row
...
apples table
apple row
apple row
...
names table
valencia
red delicious
gala
navel
blood orange
...
I need to break the names out because some of the oranges or apples
have different names, but the same other data. Am I stuck with a
names table and join model for each fruit, or can I do something
tricky with has_many :through and meta-data?
TIA,
--Dean
What about single-table inheritance (STI)? It would allow you do something
like the following:
fruits table
- name
- color
- type (Orange, Apple, etc.)
class Fruit < ActiveRecord::Base; end
class Apple < Fruit; end
class Orange < Fruit; end
I thought about that, but I have way too much information about my
"fruits" plus five different types of "fruit" to mash into one table.
I may have to hack together some cool join model.
--Dean
Don't try to break shared columns out into their own table. It's a
significant complication for no performance gain.
Just use Single Table Inheritance or Polymorphic Associations,
dpeending on what you're trying to do. We can't tell what's
appropriate, because you only described your twisted data structure,
without telling us what you're trying to model.
Sorry for the obfuscation, I am just being paranoid. I am modeling
ingredients to a recipe for making beer.
There are five things that go into beer: fermentables, hops, extras,
yeast and water. Each ingredient provides different things to a
recipe. For example, the join model between recipes and fermentables
contains an amount, potential and color. Hops provide boil time,
amount, bitterness and form. Each ingredient has different
information in the join model. Furthermore, if I made a single table
out of all five ingredient types it would have between 60 and 75
columns.
I was able to build a single controller for all 5 ingredients until I
came to the hops. Some of them have different names, so that meant
using a specialized controller just for them. I would like to get all
my ingredients modeled the same way so I can avoid that.
And I will run into the same problem when I go to implement the
Retailers model and who sells which ingredient for how much. Gah!
Could someone tell me what would be involved in creating a polymorphic
join model? I have enough knowledge of Ruby to kludge something
together by copying from the available polymorphic associations.