Run all of the constraint validations parsed from the database when validating the instance.
[Source]
# File lib/sequel/plugins/constraint_validations.rb, line 220 220: def validate 221: super 222: model.constraint_validations.each do |v| 223: send(*v) 224: end 225: end
[Validate]