浏览代码

user profile

tum 1 年之前
父节点
当前提交
e5d90dc5de
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23 0
      recycle/userprofile/migrations/0002_alter_userprofile_photos_and_more.py

+ 23 - 0
recycle/userprofile/migrations/0002_alter_userprofile_photos_and_more.py

@@ -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
+    ]