[scrobbles] Migrate scrobble log to JSON field

This commit is contained in:
2024-04-05 11:56:09 -04:00
parent 2e9d92d9c7
commit 1dcd151c65
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.9 on 2024-04-05 14:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0050_delete_scrobbledpage"),
]
operations = [
migrations.AlterField(
model_name="scrobble",
name="scrobble_log",
field=models.JSONField(blank=True, null=True),
),
]