Improve importer
This commit is contained in:
parent
3d447e08ff
commit
28dbab57c4
4 changed files with 131 additions and 60 deletions
18
twitch/migrations/0005_game_box_art.py
Normal file
18
twitch/migrations/0005_game_box_art.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.2.4 on 2025-08-04 03:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('twitch', '0004_alter_dropbenefit_distribution_type'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='game',
|
||||
name='box_art',
|
||||
field=models.URLField(blank=True, default='', max_length=500),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue