We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When category comments where created, taxonomy node object model did not exist. Comments have a category_id CharField to relate it to a category.
CharField
Now that we have a TaxonomyNode model, it would be nice to have a ForeignKey from CategoryComment to TaxonomyNode instead of the category_id CharField.
ForeignKey
CategoryComment
TaxonomyNode
category_id
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When category comments where created, taxonomy node object model did not exist.
Comments have a category_id
CharField
to relate it to a category.Now that we have a TaxonomyNode model, it would be nice to have a
ForeignKey
fromCategoryComment
toTaxonomyNode
instead of thecategory_id
CharField
.The text was updated successfully, but these errors were encountered: