Which Django model field should store a large amount of text with no length limit?
- A CharField
- B TextField
- C SlugField
- D EmailField
Answer
TextField
CharField requires max_length and maps to VARCHAR. TextField has no declared limit and is appropriate for article bodies or descriptions.





