[scrobbles] Fix migrations
This commit is contained in:
@ -16,8 +16,8 @@ class Migration(migrations.Migration):
|
|||||||
name="log",
|
name="log",
|
||||||
field=models.JSONField(
|
field=models.JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
decoder=scrobbles.dataclasses.ScrobbleMetadataDecoder,
|
decoder=scrobbles.dataclasses.ScrobbleLogDataDecoder,
|
||||||
encoder=scrobbles.dataclasses.ScrobbleMetadataEncoder,
|
encoder=scrobbles.dataclasses.ScrobbleLogDataEncoder,
|
||||||
null=True,
|
null=True,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -0,0 +1,13 @@
|
|||||||
|
# Generated by Django 4.2.13 on 2024-08-11 02:34
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("scrobbles", "0057_alter_scrobble_log"),
|
||||||
|
("scrobbles", "0057_scrobble_mood_alter_scrobble_log_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = []
|
||||||
Reference in New Issue
Block a user