You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
django/user/migrations/0004_auto_20191113_1618.py

19 lines
486 B

# Generated by Django 2.2.6 on 2019-11-13 08:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('user', '0003_auto_20191113_1613'),
]
operations = [
migrations.AlterField(
model_name='user',
name='u_image',
field=models.ImageField(height_field='url_height', upload_to='uploads/%Y/%m/%d/', verbose_name='头像图片路径', width_field='url_width'),
),
]