24 lines
683 B
Python
24 lines
683 B
Python
# Generated by Django 4.2.16 on 2026-03-30 09:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gears', '0010_rig_photo'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rig',
|
|
name='scope_height_mm',
|
|
field=models.DecimalField(blank=True, decimal_places=1, max_digits=5, null=True, verbose_name='scope height above bore (mm)'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='rig',
|
|
name='zero_distance_m',
|
|
field=models.PositiveSmallIntegerField(blank=True, null=True, verbose_name='zero distance (m)'),
|
|
),
|
|
]
|