Set the sti_key column based on the sti_key_map.
[Source]
# File lib/sequel/plugins/single_table_inheritance.rb, line 159 159: def before_create 160: send("#{model.sti_key}=", model.sti_key_map[model]) unless send(model.sti_key) 161: super 162: end
[Validate]