Fix #142: Increased max_length on TrackFile.source

merge-requests/154/head
Eliot Berriot 2018-04-19 22:25:58 +02:00
rodzic b27312648c
commit 2be46b3320
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
3 zmienionych plików z 20 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1,18 @@
# Generated by Django 2.0.3 on 2018-04-19 20:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('music', '0024_populate_uuid'),
]
operations = [
migrations.AlterField(
model_name='trackfile',
name='source',
field=models.URLField(blank=True, max_length=500, null=True),
),
]

Wyświetl plik

@ -412,7 +412,7 @@ class TrackFile(models.Model):
track = models.ForeignKey(
Track, related_name='files', on_delete=models.CASCADE)
audio_file = models.FileField(upload_to='tracks/%Y/%m/%d', max_length=255)
source = models.URLField(null=True, blank=True)
source = models.URLField(null=True, blank=True, max_length=500)
creation_date = models.DateTimeField(default=timezone.now)
modification_date = models.DateTimeField(auto_now=True)
duration = models.IntegerField(null=True, blank=True)

Wyświetl plik

@ -0,0 +1 @@
Increased max_length on TrackFile.source, this will help when importing files with a really long path (#142)