Files
vrobbler/vrobbler/apps/profiles/migrations/0031_add_home_scrobble_limit.py
Colin Powell a5510d7294
All checks were successful
build & deploy / test (push) Successful in 2m18s
build & deploy / build-and-deploy (push) Successful in 36s
[templates] Limit home scrobbles to 20 by default, configurable
2026-05-07 15:48:41 -04:00

19 lines
415 B
Python

# Generated by Django 4.2.29 on 2026-05-07 19:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0030_userprofile_widget_custom_css"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="home_scrobble_limit",
field=models.IntegerField(default=20),
),
]