27 lines
675 B
Python
27 lines
675 B
Python
# Generated by Django 4.2.29 on 2026-06-09 15:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("profiles", "0035_userprofile_monthly_mopidy_playlist_pattern"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="userprofile",
|
|
name="default_scrobble_visibility",
|
|
field=models.CharField(
|
|
choices=[
|
|
("public", "Public"),
|
|
("shared", "Shared"),
|
|
("private", "Private"),
|
|
],
|
|
default="shared",
|
|
max_length=10,
|
|
),
|
|
),
|
|
]
|