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
408 B
19 lines
408 B
6 months ago
|
# Generated by Django 2.0 on 2024-05-30 14:53
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('app01', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='movie',
|
||
|
name='desc',
|
||
|
field=models.CharField(default='', max_length=256, verbose_name='影片描述'),
|
||
|
),
|
||
|
]
|