-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
486 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 2.1 | ||
current_version = 2.2 | ||
commit = False | ||
tag = False | ||
allow_dirty = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2.2 | ||
--- | ||
* fixes InterventionBudgetLoader | ||
* admin improvements | ||
* improves indexing | ||
|
||
2.1 | ||
--- | ||
* Fixes TripLoader | ||
|
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
13 changes: 13 additions & 0 deletions
13
src/etools_datamart/apps/data/migrations/0094_RELEASE_2_1.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,13 @@ | ||
# Generated by Django 2.2.5 on 2019-09-19 10:08 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('data', '0093_auto_20190917_0603'), | ||
] | ||
|
||
operations = [ | ||
] |
42 changes: 42 additions & 0 deletions
42
src/etools_datamart/apps/data/migrations/0095_auto_20190919_1016.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,42 @@ | ||
|
||
# Generated by Django 2.2.5 on 2019-09-19 10:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('data', '0094_RELEASE_2_1'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddIndex( | ||
model_name='attachment', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_attach_source__529f94_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='engagement', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_engage_source__85fc81_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='grant', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_grant_source__df511a_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='partnerstaffmember', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_partne_source__9d46b3_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='section', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_sectio_source__565f46_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='tpmactivity', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_tpmact_source__2a9531_idx'), | ||
), | ||
migrations.AddIndex( | ||
model_name='tpmvisit', | ||
index=models.Index(fields=['source_id', 'schema_name'], name='data_tpmvis_source__90b361_idx'), | ||
), | ||
] |
138 changes: 138 additions & 0 deletions
138
src/etools_datamart/apps/data/migrations/0096_auto_20190919_1633.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,138 @@ | ||
# Generated by Django 2.2.5 on 2019-09-19 16:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('data', '0095_auto_20190919_1016'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='actionpoint', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='agreement', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='attachment', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='engagement', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='famindicator', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='fundsreservation', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='gatewaytype', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='grant', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='hact', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='hacthistory', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='intervention', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='interventionbudget', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='interventionbylocation', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='location', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='office', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='partner', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='partnerstaffmember', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='pdindicator', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='pmpindicators', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='reportindicator', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='section', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='travel', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='travelactivity', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='trip', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='userstats', | ||
name='country_name', | ||
field=models.CharField(max_length=100), | ||
), | ||
] |
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
Oops, something went wrong.