-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Sdg goal; trend y axis min max; period sorting (#404)
* add sdg goal; trend y axmis min max; period sorting * fix: reformat
- Loading branch information
Showing
8 changed files
with
121 additions
and
2 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
53 changes: 53 additions & 0 deletions
53
server/cpho/migrations/0044_indicator_sdg_goal_indicator_sdg_goal_fr_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,53 @@ | ||
# Generated by Django 5.0.9 on 2024-12-17 18:22 | ||
|
||
import server.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cpho", "0043_alter_indicator_name_fr_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="indicator", | ||
name="sdg_goal", | ||
field=server.fields.RichTextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicator", | ||
name="sdg_goal_fr", | ||
field=server.fields.RichTextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicator", | ||
name="y_axis_trend_max", | ||
field=server.fields.FloatField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicator", | ||
name="y_axis_trend_min", | ||
field=server.fields.FloatField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicatorhistory", | ||
name="sdg_goal", | ||
field=server.fields.RichTextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicatorhistory", | ||
name="sdg_goal_fr", | ||
field=server.fields.RichTextField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicatorhistory", | ||
name="y_axis_trend_max", | ||
field=server.fields.FloatField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="indicatorhistory", | ||
name="y_axis_trend_min", | ||
field=server.fields.FloatField(null=True), | ||
), | ||
] |
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