Files
backend/game/migrations/0007_auto_20201107_0130.py
2025-02-04 15:49:25 -03:00

34 lines
933 B
Python

# Generated by Django 3.1.3 on 2020-11-07 01:30
import django_mysql.models
from django.db import migrations
import internal.utils
class Migration(migrations.Migration):
dependencies = [
('game', '0006_auto_20201107_0010'),
]
operations = [
migrations.AddField(
model_name='game',
name='board_progress',
field=django_mysql.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=django_mysql.models.JSONField(
default=internal.utils.empty_list,
help_text='The generated board game',
verbose_name='Generated board',
),
),
]