forked from newsapps/django-boundaryservice
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrations: Add no-op JSONField migration
- Loading branch information
1 parent
16b9b36
commit 8aced1a
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
boundaries/migrations/0008_alter_boundary_extent_alter_boundary_metadata_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 4.2.8 on 2023-12-10 02:19 | ||
|
||
import django.core.serializers.json | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('boundaries', '0007_auto_20180325_1421'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='boundary', | ||
name='extent', | ||
field=models.JSONField(blank=True, help_text='The bounding box of the boundary as a list like [xmin, ymin, xmax, ymax] in EPSG:4326.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='boundary', | ||
name='metadata', | ||
field=models.JSONField(blank=True, default=dict, encoder=django.core.serializers.json.DjangoJSONEncoder, help_text='The attributes of the boundary from the shapefile, as a dictionary.'), | ||
), | ||
migrations.AlterField( | ||
model_name='boundaryset', | ||
name='extent', | ||
field=models.JSONField(blank=True, help_text="The set's boundaries' bounding box as a list like [xmin, ymin, xmax, ymax] in EPSG:4326.", null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='boundaryset', | ||
name='extra', | ||
field=models.JSONField(blank=True, default=dict, help_text='Any additional metadata.'), | ||
), | ||
] |