-
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.
Merge pull request #338 from cityofaustin/0.6.0-release-candidate
promote 0.6.0 to production
- Loading branch information
Showing
34 changed files
with
26,106 additions
and
298 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
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,47 @@ | ||
argcomplete==1.12.0 | ||
attrs==20.2.0 | ||
boto==2.49.0 | ||
boto3==1.15.5 | ||
botocore==1.18.5 | ||
Cerberus==1.3.2 | ||
certifi==2020.6.20 | ||
cffi==1.14.3 | ||
cfn-flip==1.2.3 | ||
chardet==3.0.4 | ||
click==7.1.2 | ||
cognitojwt==1.2.2 | ||
cryptography==3.3.2 | ||
durationpy==0.5 | ||
ecdsa==0.14.1 | ||
Flask==1.1.2 | ||
Flask-Cognito==1.16 | ||
Flask-Cors==3.0.9 | ||
future==0.18.2 | ||
hjson==3.0.2 | ||
idna==2.10 | ||
itsdangerous==1.1.0 | ||
Jinja2==2.11.3 | ||
jmespath==0.10.0 | ||
kappa==0.6.0 | ||
MarkupSafe==1.1.1 | ||
pip-tools==5.3.1 | ||
placebo==0.9.0 | ||
pyasn1==0.4.8 | ||
pycparser==2.20 | ||
python-dateutil==2.6.1 | ||
python-jose==3.2.0 | ||
python-slugify==4.0.1 | ||
pytz==2020.1 | ||
PyYAML==5.4 | ||
requests==2.24.0 | ||
rsa==4.7 | ||
s3transfer==0.3.3 | ||
six==1.15.0 | ||
text-unidecode==1.3 | ||
toml==0.10.1 | ||
tqdm==4.49.0 | ||
troposphere==2.6.2 | ||
urllib3==1.25.10 | ||
Werkzeug==0.16.1 | ||
wsgi-request-logger==0.4.6 | ||
zappa==0.52.0 |
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
1 change: 1 addition & 0 deletions
1
...igrations/1621579373697_alter_table_public_moped_proj_notes_alter_column_comm_id/down.sql
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 @@ | ||
ALTER TABLE "public"."moped_proj_notes" ALTER COLUMN "comm_id" SET NOT NULL; |
1 change: 1 addition & 0 deletions
1
.../migrations/1621579373697_alter_table_public_moped_proj_notes_alter_column_comm_id/up.sql
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 @@ | ||
ALTER TABLE "public"."moped_proj_notes" ALTER COLUMN "comm_id" DROP NOT NULL; |
32 changes: 32 additions & 0 deletions
32
moped-database/migrations/1623358779761_run_sql_migration/up.sql
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,32 @@ | ||
CREATE OR REPLACE VIEW "public"."project_list_view" AS | ||
SELECT mp.project_uuid, | ||
mp.project_id, | ||
mp.project_name, | ||
mp.project_description, | ||
mp.project_description_public, | ||
mp.ecapris_subproject_id, | ||
mp.project_importance, | ||
mp.project_order, | ||
mp.current_status, | ||
mp.timeline_id, | ||
mp.current_phase, | ||
mp.end_date, | ||
mp.project_length, | ||
mp.start_date, | ||
mp.fiscal_year, | ||
mp.capitally_funded, | ||
mp.project_priority, | ||
mp.date_added, | ||
mp.added_by, | ||
mp.is_retired, | ||
mp.milestone_id, | ||
mp.status_id, | ||
string_agg(concat(mu.first_name, ' ', mu.last_name, ':', mpr.project_role_name), ','::text) AS project_team_members, | ||
mp.updated_at, | ||
mpph.phase_name | ||
FROM ((((moped_project mp | ||
LEFT JOIN moped_proj_personnel mpp ON (((mp.project_id = mpp.project_id) AND (mpp.status_id = 1)))) | ||
LEFT JOIN moped_users mu ON ((mpp.user_id = mu.user_id))) | ||
LEFT JOIN moped_project_roles mpr ON ((mpp.role_id = mpr.project_role_id))) | ||
LEFT JOIN moped_proj_phases mpph ON ((mp.project_id = mpph.project_id)) AND mpph.is_current_phase = true) | ||
GROUP BY mp.project_uuid, mp.project_id, mp.project_name, mp.project_description, mp.project_description_public, mp.ecapris_subproject_id, mp.project_importance, mp.project_order, mp.current_status, mp.timeline_id, mp.current_phase, mp.end_date, mp.project_length, mp.start_date, mp.fiscal_year, mp.capitally_funded, mp.project_priority, mp.date_added, mp.added_by, mp.is_retired, mp.milestone_id, mp.status_id, mp.updated_at, mpph.phase_name; |
Oops, something went wrong.