Path: | doc/release_notes/4.33.0.txt |
Last Update: | Fri Oct 06 03:25:22 +0000 2017 |
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.