mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 15:55:31 +01:00
Fix missed migration for app_logo
This commit is contained in:
parent
98c5cf89ef
commit
16cc7415c1
1 changed files with 7 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
# Generated by Django 4.2.9 on 2024-01-12 05:33
|
# Generated by Django 4.2.9 on 2024-01-12 05:33
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
from django.db import migrations
|
from django.db import migrations
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
|
||||||
|
|
@ -16,7 +17,12 @@ class Migration(migrations.Migration):
|
||||||
field=models.FileField(
|
field=models.FileField(
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True,
|
null=True,
|
||||||
upload_to="",
|
upload_to="logo/",
|
||||||
|
validators=[
|
||||||
|
django.core.validators.FileExtensionValidator(
|
||||||
|
allowed_extensions=["jpg", "png", "gif", "svg"],
|
||||||
|
),
|
||||||
|
],
|
||||||
verbose_name="Application logo",
|
verbose_name="Application logo",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue