fill_quest!
This commit is contained in:
parent
18f2ac2de2
commit
77af72d590
4 changed files with 25 additions and 2 deletions
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.8 on 2024-12-27 15:31
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('mapdata', '0132_dataoverlay_update_interval_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='beaconmeasurement',
|
||||
name='fill_quest',
|
||||
field=models.BooleanField(default=False, verbose_name='create a quest to fill this'),
|
||||
),
|
||||
]
|
|
@ -447,6 +447,8 @@ class BeaconMeasurement(SpaceGeometryMixin, models.Model):
|
|||
verbose_name=_('Measurement list'),
|
||||
default=BeaconMeasurementDataSchema())
|
||||
|
||||
fill_quest = models.BooleanField(_('create a quest to fill this'), default=False)
|
||||
|
||||
class Meta:
|
||||
verbose_name = _('Beacon Measurement')
|
||||
verbose_name_plural = _('Beacon Measurements')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue