Skip to content

Commit

Permalink
Fix typo in department org fk constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
mddilley committed Dec 5, 2024
1 parent 4937eb1 commit c2fc86c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ ADD CONSTRAINT moped_entity_organization_id_fkey FOREIGN KEY ("organization_id")
REFERENCES moped_organization ("organization_id");

ALTER TABLE moped_department
ADD CONSTRAINT moped_entity_organization_id_fkey FOREIGN KEY ("organization_id")
ADD CONSTRAINT moped_department_organization_id_fkey FOREIGN KEY ("organization_id")
REFERENCES moped_organization ("organization_id");

-- Remove row with 0 for id and 'None' for name; we're not using it and null is more appropriate for entities and workgroups with no department
Expand Down
2 changes: 1 addition & 1 deletion moped-etl/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Moped ETLs

These ETLs are scheduled through our [Airflow](https://github.com/cityofaustin/atd-airflow) deployment. Each folder contains a containerized Python script and the Docker images are updated through Github Action workflows.
These ETLs are scheduled through our [Airflow](https://github.com/cityofaustin/atd-airflow) deployment. Each folder contains a containerized Python script and the Docker images are updated through GitHub Action workflows.

0 comments on commit c2fc86c

Please sign in to comment.