We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation I’ve noticed the length of first_name and last_name is validated with a check
first_name
last_name
check
I’ve usually have a column with a maximum length on the type, eg: character varying(100)
character varying(100)
So I’m wondering, is there differences/benefits between those 2 methods ?
thank you (and sorry for being off topic)
The text was updated successfully, but these errors were encountered:
Have a read of this:
https://stackoverflow.com/a/4849030/141284
Sorry, something went wrong.
thank you that’s what I was looking for
You're welcome 😊
No branches or pull requests
In the documentation I’ve noticed the length of
first_name
andlast_name
is validated with acheck
I’ve usually have a column with a maximum length on the type, eg:
character varying(100)
So I’m wondering, is there differences/benefits between those 2 methods ?
thank you (and sorry for being off topic)
The text was updated successfully, but these errors were encountered: