mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-26 22:49:01 -06:00
26 lines
828 B
Python
26 lines
828 B
Python
# Generated by Django 5.2.6 on 2026-01-24 07:33
|
|
|
|
import django.db.models.functions.text
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "0006_alter_document_checksum_unique"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="document",
|
|
name="content_length",
|
|
field=models.GeneratedField(
|
|
db_persist=True,
|
|
expression=django.db.models.functions.text.Length("content"),
|
|
null=False,
|
|
help_text="Length of the content field in characters. Automatically maintained by the database for faster statistics computation.",
|
|
output_field=models.PositiveIntegerField(default=0),
|
|
),
|
|
),
|
|
]
|