|
@@ -26,7 +26,7 @@ class Migration(migrations.Migration):
|
|
|
name='Antenna',
|
|
|
fields=[
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
- ('position', django.contrib.gis.db.models.fields.PointField(null=True, srid=4326)),
|
|
|
+ ('position', django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326)),
|
|
|
('mac', models.CharField(blank=True, default='', max_length=17, validators=[django.core.validators.RegexValidator('^([0-9a-fA-F]{2}([:-]?|$)){6}$')])),
|
|
|
('notes', models.TextField(blank=True)),
|
|
|
],
|