debug3
All checks were successful
Deploy to Server / deploy (push) Successful in 18s

This commit is contained in:
jeremygan2021
2026-03-23 00:05:15 +08:00
parent 0ba05cb687
commit ed6905a22e
3 changed files with 35 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 6.0.1 on 2026-03-22 16:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('competition', '0011_increase_file_url_length'),
]
operations = [
migrations.AlterField(
model_name='competition',
name='cover_image_url',
field=models.CharField(blank=True, help_text='优先使用上传的图片', max_length=1000, null=True, verbose_name='封面图URL'),
),
migrations.AlterField(
model_name='project',
name='cover_image_url',
field=models.CharField(blank=True, help_text='优先使用上传的图片', max_length=1000, null=True, verbose_name='项目封面URL'),
),
]