Files
backend/game/migrations/0007_auto_20201107_0130.py
Michel Wilhelm 8bcc4e4373
Some checks failed
Creates a docker image for production / Deploy (push) Has been cancelled
Creates a docker image for production / Build the docker image (push) Has been cancelled
Build / Code quality (push) Has been cancelled
Problemas resolvidos
2025-02-05 10:04:42 -03:00

32 lines
887 B
Python

# Generated by Django 3.1.3 on 2020-11-07 01:30
from django.db import migrations, models
import internal.utils
class Migration(migrations.Migration):
dependencies = [
('game', '0006_auto_20201107_0010'),
]
operations = [
migrations.AddField(
model_name='game',
name='board_progress',
field=models.JSONField(
default=internal.utils.empty_list,
help_text='This board is updated at each GameEvent recorded',
verbose_name='Progress board',
),
),
migrations.AlterField(
model_name='game',
name='board',
field=models.JSONField(
default=internal.utils.empty_list,
help_text='The generated board game',
verbose_name='Generated board',
),
),
]