|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+# Generated by Django 4.2.14 on 2024-07-28 14:55
|
|
|
2
|
+
|
|
|
3
|
+from django.db import migrations, models
|
|
|
4
|
+
|
|
|
5
|
+
|
|
|
6
|
+class Migration(migrations.Migration):
|
|
|
7
|
+
|
|
|
8
|
+ dependencies = [
|
|
|
9
|
+ ('userprofile', '0001_initial'),
|
|
|
10
|
+ ]
|
|
|
11
|
+
|
|
|
12
|
+ operations = [
|
|
|
13
|
+ migrations.AlterField(
|
|
|
14
|
+ model_name='userprofile',
|
|
|
15
|
+ name='photos',
|
|
|
16
|
+ field=models.ImageField(blank=True, null=True, upload_to='user_photos/%Y/%m/%d/'),
|
|
|
17
|
+ ),
|
|
|
18
|
+ migrations.AlterField(
|
|
|
19
|
+ model_name='userprofile',
|
|
|
20
|
+ name='upload_documents',
|
|
|
21
|
+ field=models.FileField(blank=True, null=True, upload_to='user_documents//%Y/%m/%d/'),
|
|
|
22
|
+ ),
|
|
|
23
|
+ ]
|