토이프로젝트
Django Model
pastime
2020. 8. 11. 01:19
728x90
"모델 메타데이터"란 앞서 보았던 필드 단위의 옵션들과 달리 모델 단위의 옵션이라고 볼 수 있습니다. 예를들면, 정렬 옵션(ordering), 데이터베이스 테이블 이름(db_table), 또는 읽기 좋은 이름이나 복수(plural) 이름을 지정해 줄 수 있습니다(verbose_name, verbose_name_plural). 모델클래스에 Meta 클래스를 반드시 선언해야 하는 것은 아니며, 모든 옵션을 모두 설정해야 하는 것도 아닙니다.
https://docs.djangoproject.com/en/3.1/ref/models/options/
출처: https://nukggul.tistory.com/17 [nukggul's blog]
Model Meta options | Django documentation | Django
Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate
docs.djangoproject.com
[Django] 모델 - 1. Model Syntax
Django에서 모델은 아래와 같은 특징을 가지고 있습니다. 각각의 모델은 파이썬 클래스로 표현되며, django.db.models.Model 클래스의 서브클래스입니다. 모델 클래스의 어트리뷰트로 데이터베이스의 �
nukggul.tistory.com
728x90