add tasks app

This commit is contained in:
xoliqberdiyev
2026-04-29 18:40:51 +05:00
parent abed9e59b4
commit b39c080de3
28 changed files with 361 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
from django.db import models
from django_core.models import AbstractBaseModel
class Column(AbstractBaseModel):
name = models.CharField(max_length=255)
def __str__(self):
return self.name