From 1a666e03c50390acde057e7ff06f0bea16d2f6dc Mon Sep 17 00:00:00 2001 From: Mike0001-droid Date: Fri, 7 Jun 2024 16:53:24 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=81=D0=B2=D0=BE=D0=B9=D1=81=D1=82=D0=B2=D0=B0=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8F=20unique=5Fid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/proj/audio/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/proj/audio/models.py b/server/proj/audio/models.py index b4678fd..7e3f786 100644 --- a/server/proj/audio/models.py +++ b/server/proj/audio/models.py @@ -3,7 +3,7 @@ from account.models import MyUser from django.template.defaultfilters import slugify class Song(models.Model): - unique_id = models.CharField('ID трека для плеера', max_length=255) + unique_id = models.CharField('ID трека для плеера', max_length=255, blank=True, null=True) azura_id = models.CharField('ID трека с Азуры', max_length=255) title = models.CharField('Название трека', max_length=255) artist = models.CharField('Исполнитель', max_length=255)