代码支持
Some checks failed
Deploy to Server / deploy (push) Has been cancelled

This commit is contained in:
jeremygan2021
2026-03-01 17:39:36 +08:00
parent b31e8fff09
commit 84e30d26af
10 changed files with 97 additions and 17 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 6.0.1 on 2026-03-01 09:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0038_vccourse_is_video_course_vccourse_video_url'),
]
operations = [
migrations.AddField(
model_name='vccourse',
name='video_embed_code',
field=models.TextField(blank=True, help_text='支持iframe嵌入代码优先级高于视频URL', null=True, verbose_name='视频嵌入代码'),
),
]