23 lines
566 B
Python
Executable File
23 lines
566 B
Python
Executable File
# Generated by Django 5.0.6 on 2024-05-20 15:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Upload',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('uploadFile', models.FileField(upload_to='')),
|
|
('uploadDate', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|