django internal class Meta

description
No value
aliases
No value
tags
No value
created
2023-06-01T14:10:19
updated
2023-07-15T21:30:20
title
django internal class Meta

모델의 메타데이터를 정의한다. 메타데이터란, 필드가 아닌 모든 모델을 정의하는 데이터들을 의미한다.

Model metadata is “anything that’s not a field”, such as ordering options (ordering), database table name (db_table), or human-readable singular and plural names (verbose_name and verbose_name_plural). None are required, and adding class Meta to a model is completely optional.

Model Meta

https://docs.djangoproject.com/en/4.1/ref/models/options/

Form Meta

https://docs.djangoproject.com/en/4.1/ref/forms/fields/