mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

* Changing the formatting to ruff-format * Replaces references to black to ruff or ruff format, removes black from dependencies
24 lines
673 B
Python
24 lines
673 B
Python
# Generated by Django 4.2.10 on 2024-03-04 17:30
|
|
|
|
import django.core.validators
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("paperless", "0002_applicationconfiguration_app_logo_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="applicationconfiguration",
|
|
name="max_image_pixels",
|
|
field=models.FloatField(
|
|
null=True,
|
|
validators=[django.core.validators.MinValueValidator(0.0)],
|
|
verbose_name="Sets the maximum image size for decompression",
|
|
),
|
|
),
|
|
]
|