[feat] trees & [fix] deploy & [fix] some bugs

This commit is contained in:
Data-Name-ID
2024-04-02 11:58:55 +03:00
parent cb40fb71c8
commit dd563715f2
13 changed files with 113 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.db import models
class Tree(models.Model):
name = models.CharField(
max_length=255,
unique=True,
)
data = models.JSONField()
def __str__(self):
return self.name