GameServerSupervisor/webpanel/migrations/0007_game_thumbnail.py
Pratyush Desai 180900c752
add dynamic games/ page
home/ doesnt contian much
the games in games/ should be generated dyamically
needs testing, potential pagination ahead

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2025-02-11 16:47:30 +05:30

21 lines
478 B
Python

# Generated by Django 5.1.5 on 2025-02-11 01:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("webpanel", "0006_rename_docker_image_server_image_and_more"),
]
operations = [
migrations.AddField(
model_name="game",
name="thumbnail",
field=models.ImageField(
blank=True, null=True, upload_to="game_thumbnails/"
),
),
]