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
469 B
18 lines
469 B
# Generated by Django 4.2.7 on 2026-01-06 07:17 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('update', '0029_cinema_comments_cinema_is_online'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='cinema', |
|
name='is_check', |
|
field=models.BooleanField(default=False, help_text='是否需要拉取版本', verbose_name='是否在线'), |
|
), |
|
]
|
|
|