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.
18 lines
523 B
18 lines
523 B
# Generated by Django 5.1.8 on 2025-05-06 12:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('video', '0007_videoincollection_alter_video_collections'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='videocollection',
|
|
name='videos',
|
|
field=models.ManyToManyField(related_name='related_collections_video', through='video.VideoInCollection', to='video.video', verbose_name='Videos'),
|
|
),
|
|
]
|