mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 09:49:16 +02:00
26 lines
717 B
Python
26 lines
717 B
Python
# Generated by Django 2.0.4 on 2018-05-17 23:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("users", "0005_user_subsonic_api_token")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="permission_federation",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="permission_library",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="permission_settings",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|