Run all of the constraint validations parsed from the database when validating the instance.
[Source]
# File lib/sequel/plugins/constraint_validations.rb, line 236 236: def validate 237: super 238: model.constraint_validations.each do |v| 239: send(*v) 240: end 241: end
[Validate]