Path: | doc/release_notes/4.33.0.txt |
Last Update: | Sat Jun 02 02:04:22 +0000 2018 |
class Foo < Sequel::Model set_dataset :my_foos end
to:
class Foo < Sequel::Model(:my_foos) end
as otherwise Foo will attempt to use the foos table by default when creating the class, which will raise an error as it is not the correct table name.
foreign_key :foo_id, Sequel.identifier(:fo__oo)
Similar issues were also fixed in the boolean_readers, boolean_subsets, and class_table_inheritance plugins.