feat: Implement initial schema and add various API, service, and management command enhancements across the application.

This commit is contained in:
pacnpal
2026-01-01 15:13:01 -05:00
parent c95f99ca10
commit b243b17af7
413 changed files with 11164 additions and 17433 deletions

View File

@@ -34,14 +34,8 @@ class Review(TrackedModel):
text = models.TextField(blank=True, help_text="Review text (optional)")
# Metadata
is_public = models.BooleanField(
default=True,
help_text="Whether this review is visible to others"
)
helpful_votes = models.PositiveIntegerField(
default=0,
help_text="Number of users who found this helpful"
)
is_public = models.BooleanField(default=True, help_text="Whether this review is visible to others")
helpful_votes = models.PositiveIntegerField(default=0, help_text="Number of users who found this helpful")
class Meta(TrackedModel.Meta):
verbose_name = "Review"