27 lines
721 B
Python
27 lines
721 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("fupogfakta", "0004_player_session_token"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="gamesession",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("lobby", "Lobby"),
|
|
("lie", "Løgnfase"),
|
|
("guess", "Gættefase"),
|
|
("reveal", "Reveal"),
|
|
("scoreboard", "Scoreboard"),
|
|
("finished", "Afsluttet"),
|
|
],
|
|
default="lobby",
|
|
max_length=16,
|
|
),
|
|
),
|
|
]
|