mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
26 lines
665 B
Python
26 lines
665 B
Python
# Generated by Django 4.0.6 on 2022-07-25 06:34
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "1023_add_comments"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="document",
|
|
name="original_filename",
|
|
field=models.CharField(
|
|
default=None,
|
|
editable=False,
|
|
help_text="The original name of the file when it was uploaded",
|
|
max_length=1024,
|
|
null=True,
|
|
verbose_name="original filename",
|
|
),
|
|
),
|
|
]
|