24 lines
594 B
Python
Executable File
24 lines
594 B
Python
Executable File
# Generated by Django 5.0.6 on 2024-05-20 15:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('base', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Document',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('docfile', models.FileField(upload_to='documents/%Y/%m/%d')),
|
|
],
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Upload',
|
|
),
|
|
]
|