[videos] Clean up admin stuff
This commit is contained in:
21
vrobbler/apps/videos/migrations/0020_channel_youtube_id.py
Normal file
21
vrobbler/apps/videos/migrations/0020_channel_youtube_id.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Generated by Django 4.2.16 on 2024-11-06 16:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
(
|
||||
"videos",
|
||||
"0019_rename_youtube_url_video_youtube_id_channel_and_more",
|
||||
),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="channel",
|
||||
name="youtube_id",
|
||||
field=models.CharField(blank=True, max_length=255, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user