The table name of the database is a plural system of the class name of the model name and is named in the snake case. ** What is a snake case? **: How to write all lowercase letters and connect words with _
The class name of the model is singular and named in camel case. ** What is camel case **: Capitalize the first letter of each word, do not use _ Writing model class is camel case and singular
Recommended Posts