Django model naming convention

前端 未结 4 836
轻奢々
轻奢々 2021-02-02 09:45

What is the preferred naming convention for Django model classes?

4条回答
  •  野性不改
    2021-02-02 10:36

    In most of programming languages, people prefer give a singular names to the objects/models because these models are also represented by tables in your database system. The minimalism is a good choice everytime to avoid some meaning conflicts in the future.

    To exemplify; https://stackoverflow.com/a/5841297/2643226

提交回复
热议问题