I am ashamed of what i have done but I got hl2dm to render properly with the gamestats and everything. It's for the best as it made me realize some of the things im not accounting for Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
19 lines
406 B
Python
19 lines
406 B
Python
# Generated by Django 5.1.5 on 2025-04-23 09:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webpanel", "0013_migrate_port_to_dict"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="server",
|
|
name="query_protocol",
|
|
field=models.CharField(max_length=20, null=True),
|
|
),
|
|
]
|