Add an end timestamp

This commit is contained in:
2023-04-02 23:57:55 -04:00
parent 5db8bf0329
commit fe4faee7aa
2 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-04-03 03:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0035_scrobble_videogame_save_data"),
]
operations = [
migrations.AddField(
model_name="scrobble",
name="stop_timestamp",
field=models.DateTimeField(blank=True, null=True),
),
]