Files
music-tag-web/applications/task/models.py
2022-12-12 15:43:57 +08:00

9 lines
130 B
Python

from django.db import models
# Create your models here.
class Task(models.Model):
name = models.CharField(max_length=255)