From ab5fb7d351bb3701f9fbb103668d7c95e164aedc Mon Sep 17 00:00:00 2001 From: Olaf Szmidt Date: Tue, 15 May 2018 13:03:06 +0100 Subject: [PATCH] Create migrations --- players/migrations/0007_auto_20180515_1300.py | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 players/migrations/0007_auto_20180515_1300.py diff --git a/players/migrations/0007_auto_20180515_1300.py b/players/migrations/0007_auto_20180515_1300.py new file mode 100644 index 000000000..85d60c242 --- /dev/null +++ b/players/migrations/0007_auto_20180515_1300.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('players', '0006_game_static_data'), + ] + + operations = [ + migrations.AlterField( + model_name='game', + name='pickup_spawn_chance', + field=models.FloatField(default=0.1), + ), + migrations.AlterField( + model_name='game', + name='score_despawn_chance', + field=models.FloatField(default=0.05), + ), + migrations.AlterField( + model_name='game', + name='start_height', + field=models.IntegerField(default=31), + ), + migrations.AlterField( + model_name='game', + name='start_width', + field=models.IntegerField(default=31), + ), + migrations.AlterField( + model_name='game', + name='target_num_pickups_per_avatar', + field=models.FloatField(default=1.2), + ), + ]