What is the purpose of Django's Meta class inside a model?
- A To define database-level and behavioural options such as ordering, indexes and constraints
- B To declare model fields
- C To register the model in the admin
- D To define template context
Answer
To define database-level and behavioural options such as ordering, indexes and constraints
Meta configures options including ordering, db_table, unique_together, indexes and verbose names, without adding any fields.





