mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
Add missing mig
This commit is contained in:
parent
66781ea51a
commit
97df07adcf
1 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
# Generated by Django 4.1.4 on 2022-12-28 07:56
|
||||
|
||||
import functools
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
import character.models.character
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("character", "0038_character_profile_picture"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="character",
|
||||
name="profile_picture",
|
||||
field=models.ImageField(
|
||||
blank=True,
|
||||
null=True,
|
||||
upload_to="profile_pictures",
|
||||
validators=[
|
||||
functools.partial(
|
||||
character.models.character.validate_image,
|
||||
*(),
|
||||
**{"megabytes_limit": 2},
|
||||
)
|
||||
],
|
||||
verbose_name="image de profil",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue