Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just wondering for table field naming e.g. first_name.

in the data model. Is it ok i name as first_name also?

Or must i change to firstName?

Thanks

share|improve this question
Welcome to StackOverflow. – Jonathan Sampson Dec 24 '09 at 7:33

3 Answers

up vote 0 down vote accepted

Which naming convention you use is entirely up to you, just so long as its not an invalid one (including spaces, etc). Go with what is most easily understood by you and your team.

share|improve this answer

Field names should use underscores according to the CakePHP conventions, see http://book.cakephp.org/view/24/Model-and-Database-Conventions

share|improve this answer

since this field is not a primary key or a foreign key, there is no problem

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.