mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-29 11:09:27 -05:00
26 lines
573 B
Python
26 lines
573 B
Python
# Generated by Django 5.1.7 on 2025-04-04 01:08
|
|
|
|
|
|
import datetime
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("documents", "1065_workflowaction_assign_custom_fields_values"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="document",
|
|
name="created",
|
|
field=models.DateField(
|
|
db_index=True,
|
|
default=datetime.datetime.today,
|
|
verbose_name="created",
|
|
),
|
|
),
|
|
]
|