Add directory watcher service

This commit is contained in:
Keannu Christian Bernasol 2024-11-27 00:32:28 +08:00
parent 957272cd07
commit 5bc170f519
6 changed files with 164 additions and 8 deletions

View file

@ -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,
),
),
]