01Use `CharField` for title with max_length=200
02Use `TextField` for body
03Add a `ForeignKey` to `settings.AUTH_USER_MODEL` with `on_delete=CASCADE` and `related_name='posts'`
04Add `created_at` with `auto_now_add=True`
05Add `updated_at` with `auto_now=True`
06Implement `__str__` returning the title
07Set `ordering = ['-created_at']` in Meta