24 lines
726 B
Python
24 lines
726 B
Python
# Generated by Django 3.2.9 on 2022-08-30 05:26
|
|
|
|
from django.db import migrations, models
|
|
import rog.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rog', '0024_customuser_group'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='UserUpload',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=255, verbose_name='User uploads')),
|
|
('file', models.FileField(blank=True, upload_to=rog.models.get_file_path)),
|
|
('uploaded_date', models.DateField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|