-
Notifications
You must be signed in to change notification settings - Fork 4
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 #1366 from cityofaustin/1.41.0-release-candidate
Release VZ 1.41.0 - Toomey Rd
- Loading branch information
Showing
23 changed files
with
349 additions
and
514 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,6 +6,4 @@ services: | |
volumes: | ||
- .:/app | ||
env_file: | ||
- ./env | ||
environment: | ||
- ENVIRONMENT=development | ||
- ./.env |
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,4 @@ | ||
ENVIRONMENT=development | ||
OP_API_TOKEN= | ||
OP_CONNECT= | ||
OP_VAULT_ID= |
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
17 changes: 17 additions & 0 deletions
17
atd-vzd/metadata/databases/default/tables/public_atd__mode_category_lkp.yaml
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,20 @@ | ||
table: | ||
name: atd__mode_category_lkp | ||
schema: public | ||
select_permissions: | ||
- role: editor | ||
permission: | ||
columns: | ||
- atd_mode_category_desc | ||
- atd_mode_category_mode_name | ||
- id | ||
filter: {} | ||
comment: "" | ||
- role: readonly | ||
permission: | ||
columns: | ||
- atd_mode_category_desc | ||
- atd_mode_category_mode_name | ||
- id | ||
filter: {} | ||
comment: "" |
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
27 changes: 27 additions & 0 deletions
27
atd-vzd/migrations/default/1706291244487_update_crash_based_comp_cost_2024/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,27 @@ | ||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 3000000 | ||
WHERE est_comp_cost_desc = 'Killed (K)'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 2500000 | ||
WHERE est_comp_cost_desc = 'Suspected Serious Injury (A)'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 270000 | ||
WHERE est_comp_cost_desc = 'Non-incapacitating Injury (B)'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 220000 | ||
WHERE est_comp_cost_desc = 'Possible Injury (C)'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 50000 | ||
WHERE est_comp_cost_desc = 'Not Injured'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 50000 | ||
WHERE est_comp_cost_desc = 'Unknown Injury (0)'; | ||
|
||
UPDATE public.atd_txdot__est_comp_cost_crash_based | ||
SET est_comp_cost_amount = 10000 | ||
WHERE est_comp_cost_desc = 'Non-CR3'; |
Oops, something went wrong.