I have two models:
Foo:
class Foo < Sequel::Model (:FOO_TABLE)
set_primary_key [:KEY]
# has many Bars
one_to_many :bars
end
Bar:
class Bar < Sequel::Model (:BAR_TABLE)
# compound key
set_primary_key [:KEY,:NBR]
# belongs to Foo
many_to_one :foo
end
Loading Foo works as expected:
irb> foo = Foo['ABC']
=> #<Foo @values={:KEY=>"ABC", :NAME=>"ABC name"}>
However, when I attempt to load its Bars
, I get an error:
irb> bars = foo.bars
=> Sequel::DatabaseError: Mysql2::Error: Unknown column 'BAR_TABLE.foo_id' in 'where clause'
What is the right way to specify a foreign_key in my Sequel model?
** edit **
Using MySQL2.
In general you want to look at the options for associations. Specifically, you need to tell Sequel how to find the correct 'bars' given a foo.
If you are just using a non-standard name for the foreign key reference in your
BAR_TABLE
, you can do this:Example/proof: