Add title field to YoutubeCredentials model and update related templates and tasks
This commit is contained in:
parent
f36fe8ea84
commit
83404e2ed5
6 changed files with 22 additions and 6 deletions
17
game/migrations/0017_youtubecredentials_title.py
Normal file
17
game/migrations/0017_youtubecredentials_title.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 5.2.3 on 2025-06-15 08:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("game", "0016_alter_groupleader_member"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="youtubecredentials",
|
||||
name="title",
|
||||
field=models.CharField(blank=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue