Pratyush Desai
3c2fe30f41
Mildly concerned about things coming back to bite. Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
24 lines
604 B
Python
24 lines
604 B
Python
# Generated by Django 5.1.4 on 2024-12-20 10:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("gameserver", "0003_game_command_line_mod_command_line_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="game",
|
|
name="description",
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="server",
|
|
name="container_id",
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
]
|