Skip to content

Commit

Permalink
migrations: Add no-op JSONField migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 10, 2023
1 parent 16b9b36 commit 8aced1a
Showing 1 changed file with 34 additions and 0 deletions.
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.'),
),
]

0 comments on commit 8aced1a

Please sign in to comment.