Added an Image for the Grid Thumbnail There is plenty to fix but that's trivial shall polish it at the end of v1 Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
19 lines
420 B
Python
19 lines
420 B
Python
# Generated by Django 5.1.5 on 2025-02-07 05:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webpanel", "0005_server_command_args_server_docker_run_command"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="game",
|
|
name="image_url",
|
|
field=models.URLField(blank=True, null=True),
|
|
),
|
|
]
|