Add scrobble log option and CLI tool

This commit is contained in:
2023-01-05 13:39:56 -05:00
parent 68c1b3c6f0
commit 41a74f46c8
6 changed files with 100 additions and 10 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-01-05 17:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('scrobbles', '0003_remove_scrobble_counted_scrobble_in_progress'),
]
operations = [
migrations.AddField(
model_name='scrobble',
name='scrobble_log',
field=models.TextField(blank=True, null=True),
),
]