Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0002_game_running.py 374B

1 year ago
123456789101112131415161718
  1. # Generated by Django 4.1.7 on 2023-09-11 07:08
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('mygame', '0001_initial'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='game',
  10. name='running',
  11. field=models.BooleanField(default=False),
  12. ),
  13. ]