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
text
description
courses
udemy/database/migrations/2023_06_01_160452_create_courses_table.php
Line 18 in fdc6555
A description column typically contains some long text. In MySQL, it is typical to use a TEXT column for such field instead of a VARCHAR.
TEXT
VARCHAR
The text was updated successfully, but these errors were encountered:
Okay I will change that.
Due to indexing and better performance of VARCHAR,I decided to use string most times. https://www.scaler.com/topics/varchar-vs-text-mysql/
But I will change that. Thanks for the correction
Sorry, something went wrong.
No branches or pull requests
udemy/database/migrations/2023_06_01_160452_create_courses_table.php
Line 18 in fdc6555
A description column typically contains some long text. In MySQL, it is typical to use a
TEXT
column for such field instead of aVARCHAR
.The text was updated successfully, but these errors were encountered: