mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 05:29:17 +02:00
20 lines
676 B
Python
20 lines
676 B
Python
# Generated by Django 2.0.6 on 2018-07-10 20:09
|
|
|
|
from django.db import migrations, models
|
|
import funkwhale_api.common.utils
|
|
import funkwhale_api.common.validators
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0009_auto_20180619_2024'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='avatar',
|
|
field=models.ImageField(blank=True, max_length=150, null=True, upload_to=funkwhale_api.common.utils.ChunkedPath('users/avatars'), validators=[funkwhale_api.common.validators.ImageDimensionsValidator(max_height=400, max_width=400, min_height=50, min_width=50)]),
|
|
),
|
|
]
|