GameServerSupervisor/webpanel/migrations/0007_game_thumbnail.py
Pratyush Desai 77ab980fd4
Create Frontend
Create views and templates to render the views for a list of games
And for it to show if server is running for the game selected.

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2025-04-16 14:30:51 +05:30

21 lines
478 B
Python

# Generated by Django 5.1.5 on 2025-04-15 19:28
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/"
),
),
]