temporal upload. parcial Phase 2 implementation

This commit is contained in:
2026-08-03 23:49:19 -05:00
parent f09acedbcf
commit a81e31bf1a
11 changed files with 555 additions and 8 deletions
+3
View File
@@ -206,6 +206,9 @@ class Version(models.Model):
version_name = models.CharField(max_length=64)
changelog = models.TextField(blank=True, default='')
downloads = models.PositiveIntegerField(default=0)
pack_format = models.IntegerField(null=True, blank=True)
pack_description = models.TextField(blank=True, default='')
mods_manifest = models.JSONField(default=dict, blank=True)
created_at = models.DateTimeField(auto_now_add=True)
class Meta: