mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-19 01:23:02 +08:00
19 lines
431 B
Python
19 lines
431 B
Python
|
# Generated by Django 5.1.3 on 2025-01-08 04:39
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("documents", "0002_alter_document_document_type"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="document",
|
||
|
name="memorandum_from",
|
||
|
field=models.CharField(blank=True, max_length=128, null=True),
|
||
|
),
|
||
|
]
|