Fixing long play scrobbles

This commit is contained in:
2023-03-06 00:53:50 -05:00
parent a4537879f9
commit 9bcd9d8bb7
13 changed files with 275 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 4.1.5 on 2023-03-06 02:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videogames", "0005_rename_platform_videogame_platforms"),
]
operations = [
migrations.AddField(
model_name="videogame",
name="summary",
field=models.TextField(blank=True, null=True),
),
migrations.AlterField(
model_name="videogame",
name="platforms",
field=models.ManyToManyField(to="videogames.videogameplatform"),
),
]