for migrated pi history, set their x,y to -1.0 to be more obvious
This commit is contained in:
parent
9d94155f66
commit
ab0d738851
@ -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,
|
||||
),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user