for migrated pi history, set their x,y to -1.0 to be more obvious

This commit is contained in:
Brian S. Stephan 2020-10-25 12:28:08 -05:00
parent 9d94155f66
commit ab0d738851
1 changed files with 2 additions and 2 deletions

View File

@ -13,13 +13,13 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='pilog',
name='simulation_x',
field=models.DecimalField(decimal_places=10, default=0.0, max_digits=11),
field=models.DecimalField(decimal_places=10, default=-1.0, max_digits=11),
preserve_default=False,
),
migrations.AddField(
model_name='pilog',
name='simulation_y',
field=models.DecimalField(decimal_places=10, default=0.0, max_digits=11),
field=models.DecimalField(decimal_places=10, default=-1.0, max_digits=11),
preserve_default=False,
),
]