Why is post_type a CharField and not a ForeignKey?
 

Any reason for having post_type as CharField instead of a ForeignKey on the Post model?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Kaseko's avatar
71
Kaseko
asked 12 years ago, updated 12 years ago

Comments

I think you are misunderstanding the purpose. Post type is a string "question", "answer", "comment", etc, to distinguish, what of kind is the post. Why should it be a foreign key? It could have been a small int to save bytes, but it is what it is now.

Evgeny's avatar Evgeny (12 years ago)

It was one thing that stood out when I was looking at the admin interface. I was thinking one helpful feature request would be, e.g, to turn an answer into a comment. But you wouldn't do that through the admin interface anyways.

Kaseko's avatar Kaseko (12 years ago)
1

We have a feature like that in the repository version.

Evgeny's avatar Evgeny (12 years ago)
see more comments