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.
19 lines
475 B
19 lines
475 B
10 months ago
|
# Generated by Django 4.2.7 on 2024-01-07 01:04
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('update', '0004_cinemauser_clientrelease_release_updatecommand'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='cinema',
|
||
|
name='user',
|
||
|
field=models.CharField(help_text='当前使用人', max_length=10, null=True, verbose_name='使用人'),
|
||
|
),
|
||
|
]
|