[Answered ]-Should I set a maximum length for journal content in the database?

1👍

There is already a type for that: a TextField [Django-doc], this will normally use the database limit, which is for practical reasons "unlimited". It will also work with a textarea as form widget by default.

For a CharField [Django-doc], you are required to pass a max_length, if not the constructor will reject it.

Leave a comment