First commit of claude's rework in django + vanillajs fronted
This commit is contained in:
31
apps/gears/migrations/0007_scope_optics.py
Normal file
31
apps/gears/migrations/0007_scope_optics.py
Normal file
@@ -0,0 +1,31 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('gears', 'gears_0006_component_status'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='scope',
|
||||
name='adjustment_unit',
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[('MOA', 'MOA (Minute of Angle)'), ('MRAD', 'MRAD (Milliradian)')],
|
||||
max_length=4,
|
||||
verbose_name='adjustment unit',
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='scope',
|
||||
name='focal_plane',
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[('FFP', 'First Focal Plane (FFP)'), ('SFP', 'Second Focal Plane (SFP)')],
|
||||
max_length=3,
|
||||
verbose_name='focal plane',
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user