[migrations] Add default value to run time seconds

This commit is contained in:
2025-01-21 23:19:45 -05:00
parent a9499f0463
commit 84790c805c
17 changed files with 295 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class ScrobblableMixin(TimeStampedModel):
uuid = models.UUIDField(default=uuid4, editable=False, **BNULL)
title = models.CharField(max_length=255, **BNULL)
run_time_seconds = models.IntegerField(**BNULL)
run_time_seconds = models.IntegerField(default=900)
run_time_ticks = models.PositiveBigIntegerField(**BNULL)
genre = TaggableManager(through=ObjectWithGenres, blank=True)