Are there validation flags for GORM like maxlength minlength, looking through the docs I don't see any other than Unique or Not Null
I ended up using a library like this:
https://github.com/go-playground/validator
Validate yourself before persisting to a DB
Validation should be handled outside of GORM IMHO
No, but you could checkout this one. https://github.com/qor/validations
Most helpful comment
No, but you could checkout this one. https://github.com/qor/validations