-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2059 - Rename Item in Regulatory Dropdown Field for Institutions #2077
Merged
sh16011993
merged 8 commits into
main
from
2059_institutions_rename_item_in_regulatory_dropdown_field
Jul 5, 2023
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
96ab452
#2059 - Rename Item in Regulatory Dropdown Field for Institutions
sh16011993 661939a
Merge branch 'main' into 2059_institutions_rename_item_in_regulatory_…
sh16011993 997627f
Updated code to include the dropdown item change for Institution Crea…
sh16011993 a0ebaf3
Merge branch 'main' into 2059_institutions_rename_item_in_regulatory_…
sh16011993 3661b60
Code Update
sh16011993 97401fa
Merge branch 'main' into 2059_institutions_rename_item_in_regulatory_…
sh16011993 b3e2b7d
Updated code with review comments
sh16011993 0addeda
Updated code with review comments
sh16011993 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...kages/backend/apps/db-migrations/src/migrations/1688501112255-UpdateRegulatoryBodyCode.ts
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 @@ | ||
import { MigrationInterface, QueryRunner } from "typeorm"; | ||
import { getSQLFileData } from "../utilities/sqlLoader"; | ||
|
||
export class UpdateRegulatoryBodyCode1688501112255 | ||
implements MigrationInterface | ||
{ | ||
public async up(queryRunner: QueryRunner): Promise<void> { | ||
/* | ||
Update the regulating body ita to skilledTradesBC in education program relation. | ||
*/ | ||
await queryRunner.query( | ||
getSQLFileData( | ||
"Update-regulatory-body-ita-code.sql", | ||
"EducationPrograms", | ||
), | ||
); | ||
/* | ||
Update the regulating body ita to skilledTradesBC in institution relation. | ||
*/ | ||
await queryRunner.query( | ||
getSQLFileData("Update-regulatory-body-ita-code.sql", "Institution"), | ||
); | ||
} | ||
|
||
public async down(queryRunner: QueryRunner): Promise<void> { | ||
/* | ||
Revert the regulatory body skilledTradesBC to ita in education program relation. | ||
*/ | ||
await queryRunner.query( | ||
getSQLFileData( | ||
"Revert-regulatory-body-ita-code.sql", | ||
"EducationPrograms", | ||
), | ||
); | ||
/* | ||
Revert the regulatory body skilledTradesBC to ita in institution relation. | ||
*/ | ||
await queryRunner.query( | ||
getSQLFileData("Revert-regulatory-body-ita-code.sql", "Institution"), | ||
); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
.../backend/apps/db-migrations/src/sql/EducationPrograms/Revert-regulatory-body-ita-code.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,9 @@ | ||
/* | ||
Revert the regulatory body skilledTradesBC to ita in education programs relation. | ||
*/ | ||
UPDATE | ||
sims.education_programs | ||
SET | ||
regulatory_body = 'ita' | ||
WHERE | ||
regulatory_body = 'skilledTradesBC'; |
9 changes: 9 additions & 0 deletions
9
.../backend/apps/db-migrations/src/sql/EducationPrograms/Update-regulatory-body-ita-code.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,9 @@ | ||
/* | ||
Update the regulatory body ita to skilledTradesBC in education programs relation. | ||
*/ | ||
UPDATE | ||
sims.education_programs | ||
SET | ||
regulatory_body = 'skilledTradesBC' | ||
WHERE | ||
regulatory_body = 'ita'; |
9 changes: 9 additions & 0 deletions
9
...ckages/backend/apps/db-migrations/src/sql/Institution/Revert-regulatory-body-ita-code.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,9 @@ | ||
/* | ||
Revert the regulatory body skilledTradesBC to ita in institution relation. | ||
*/ | ||
UPDATE | ||
sims.institutions | ||
SET | ||
regulating_body = 'ita' | ||
WHERE | ||
regulating_body = 'skilledTradesBC'; |
9 changes: 9 additions & 0 deletions
9
...ckages/backend/apps/db-migrations/src/sql/Institution/Update-regulatory-body-ita-code.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,9 @@ | ||
/* | ||
Update the regulating body ita to skilledTradesBC in institution relation. | ||
*/ | ||
UPDATE | ||
sims.institutions | ||
SET | ||
regulating_body = 'skilledTradesBC' | ||
WHERE | ||
regulating_body = 'ita'; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just wondering, since the migration affects 2 different entities. how about creating 2

.sql
files in the respective entity folders, and add in the same migration file? something like this,There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For history, I think that it would be better as @ann-aot mentioned.
The idea to have the SQL files more table centered is to check the changes along the time with a particular entity, so it would make sense.