Skip to content

Commit

Permalink
Create migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
OlafSzmidt committed May 15, 2018
1 parent dc7f08f commit ab5fb7d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions players/migrations/0007_auto_20180515_1300.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit ab5fb7d

Please sign in to comment.