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,22 @@
# Generated by Django 4.1.5 on 2023-03-06 02:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0026_scrobble_video_game"),
]
operations = [
migrations.RemoveField(
model_name="scrobble",
name="videogame_minutes_played",
),
migrations.AlterField(
model_name="scrobble",
name="playback_position",
field=models.CharField(blank=True, max_length=10, null=True),
),
]

View File

@ -0,0 +1,21 @@
# Generated by Django 4.1.5 on 2023-03-06 05:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
(
"scrobbles",
"0027_remove_scrobble_videogame_minutes_played_and_more",
),
]
operations = [
migrations.AddField(
model_name="scrobble",
name="video_game_minutes_played",
field=models.IntegerField(blank=True, null=True),
),
]