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.
18 lines
463 B
18 lines
463 B
# Generated by Django 4.2.7 on 2024-01-09 09:26 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('update', '0012_alter_release_options'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='cinemauser', |
|
name='pinyin', |
|
field=models.CharField(default='', help_text='用户名拼音', max_length=30, verbose_name='用户名拼音'), |
|
), |
|
]
|
|
|