Update long play to use seconds

This commit is contained in:
2023-03-06 10:21:27 -05:00
parent 551e6f4f7e
commit 73c72ef465
3 changed files with 31 additions and 7 deletions

View File

@ -0,0 +1,22 @@
# Generated by Django 4.1.5 on 2023-03-06 15:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0028_scrobble_video_game_minutes_played"),
]
operations = [
migrations.RemoveField(
model_name="scrobble",
name="video_game_minutes_played",
),
migrations.AddField(
model_name="scrobble",
name="long_play_seconds",
field=models.BigIntegerField(blank=True, null=True),
),
]