-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from Georiviere/feat_add_watershed_portals
✨ Add watershed types portals
- Loading branch information
Showing
15 changed files
with
245 additions
and
80 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
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
33 changes: 33 additions & 0 deletions
33
georiviere/contribution/migrations/0008_auto_20230731_1304.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,33 @@ | ||
# Generated by Django 3.1.14 on 2023-07-31 13:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('contribution', '0007_auto_20230725_1541'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='contributionfaunaflora', | ||
name='home_area', | ||
field=models.FloatField(blank=True, default=0.0, help_text='Home area in square meters', null=True, verbose_name='Home area (in square meters)'), | ||
), | ||
migrations.AlterField( | ||
model_name='contributionpotentialdamage', | ||
name='bank_height', | ||
field=models.FloatField(blank=True, default=0.0, help_text='Bank height (measured between the foot of the bank and the top of the bank) in meters', null=True, verbose_name='Bank height (in meters)'), | ||
), | ||
migrations.AlterField( | ||
model_name='contributionpotentialdamage', | ||
name='excessive_cutting_length', | ||
field=models.FloatField(blank=True, default=0.0, null=True, verbose_name='Excessive cutting length (in meters)'), | ||
), | ||
migrations.AlterField( | ||
model_name='contributionpotentialdamage', | ||
name='length_bank_erosion', | ||
field=models.FloatField(blank=True, default=0.0, help_text='Distance between the foot of the bank and the foot of the erosion.', null=True, verbose_name='Length bank erosion (in meters)'), | ||
), | ||
] |
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
Oops, something went wrong.