Reputation: 33
My question is about the conventions around a multi-worded MySQL table name e.g. "comments_flags," which is not a pivot table.
Thanks for any advice.
Upvotes: 3
Views: 450
Reputation: 17715
It is no different then for single word cases.
What is the correct database table name for "comments_flags"?
comments_flags
What would the corresponding model name be?
Model_Comments_Flag
What should be the path to the model?
application/classes/model/comments/flag.php
Upvotes: 2