-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ids reservation to prevent conflicts on merging new features
- Loading branch information
Showing
4 changed files
with
50 additions
and
20 deletions.
There are no files selected for viewing
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
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
28 changes: 28 additions & 0 deletions
28
webapp/djakart/migrations/0006_version_reserved_ids_alter_version_crs_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,28 @@ | ||
# Generated by Django 5.0.6 on 2024-09-01 13:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djakart', '0005_version_crs_alter_basemap_request_params_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='version', | ||
name='reserved_ids', | ||
field=models.IntegerField(default=100), | ||
), | ||
migrations.AlterField( | ||
model_name='version', | ||
name='crs', | ||
field=models.CharField(default='EPSG:3003', max_length=20, verbose_name='Coordinate system epsg code'), | ||
), | ||
migrations.AlterField( | ||
model_name='version', | ||
name='extent', | ||
field=models.JSONField(default=[99999999, 99999999, -999999, -9999999]), | ||
), | ||
] |
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