mysql> desc articles;
+--------------+---------------+
| Field | Type |
+--------------+---------------+
| id | int(11) |
| kicker | varchar(255) |
| body | longtext |
| headline | varchar(255) |
| sub_headline | text |
| teaser | text |
We used to have varchar(255) for sub_headline as with headline. A few years ago I caught a ticket to turn it into a text type (65 KiB). SEO was the motive. If we ever get a request to make it longtext (4 GiB) I may cry.