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.

26 lines
778 B

# Generated by Django 4.2.3 on 2023-07-27 01:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('form_demo', '0002_alter_userstatus_id'),
]
operations = [
migrations.CreateModel(
name='ImgFile',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(default='', max_length=30, verbose_name='名称')),
('heading', models.FileField(upload_to='uploads/', verbose_name='文件')),
],
options={
'verbose_name': '用户头像信息',
'db_table': 'user_img',
},
),
]