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.
24 lines
608 B
24 lines
608 B
# Generated by Django 3.2.13 on 2023-09-07 08:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('course', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='name',
|
|
field=models.CharField(blank=True, max_length=255, verbose_name='课程名称'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='course',
|
|
name='type',
|
|
field=models.CharField(blank=True, max_length=128, verbose_name='课程类型'),
|
|
),
|
|
]
|