19 lines
466 B
Python
19 lines
466 B
Python
# Generated by Django 5.2 on 2025-05-12 09:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("card", "0007_alter_songattributes_audio_file"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="songattributes",
|
|
name="audio_file",
|
|
field=models.URLField(blank=True, max_length=1000, verbose_name="音频文件"),
|
|
),
|
|
]
|