forked from erp-dev/erp
feat: added user profile model & api & admin, it uses by found user with merchant
This commit is contained in:
19
api_v1/migrations/0002_alter_uploadedfile_path.py
Normal file
19
api_v1/migrations/0002_alter_uploadedfile_path.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-24 03:07
|
||||
|
||||
import api_v1.models
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('api_v1', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='uploadedfile',
|
||||
name='path',
|
||||
field=models.FileField(help_text='文件存储路径,包含前缀、随机文件名和后缀', max_length=500, upload_to=api_v1.models.upload_file_path, verbose_name='文件路径'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user