mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-04-28 02:31:23 +08:00
Add directory watcher service
This commit is contained in:
parent
957272cd07
commit
5bc170f519
6 changed files with 164 additions and 8 deletions
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 5.1.3 on 2024-11-26 15:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("documents", "0003_remove_document_metadata_document_ocr_metadata"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="document",
|
||||
name="document_type",
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
("memorandum", "Memorandum"),
|
||||
("hoa", "HOA"),
|
||||
("documented procedures manual", "Documented Procedures Manual"),
|
||||
("other", "Other"),
|
||||
],
|
||||
max_length=32,
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue