user1046595
user1046595

Reputation: 33

Kohana 3 ORM Table Naming

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

Answers (1)

matino
matino

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

Related Questions