Skip to content
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
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",
Copy link
Contributor

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,
image

Copy link
Collaborator

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.

),
);
/*
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"),
);
}
}
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';
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';
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';
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';
Original file line number Diff line number Diff line change
Expand Up @@ -2865,8 +2865,8 @@
"value": "privateActLegislature"
},
{
"label": "ITA",
"value": "ita"
"label": "Skilled Trades BC",
"value": "skilledTradesBC"
},
{
"label": "ICBC",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@
"value": "ptib"
},
{
"label": "ITA",
"value": "ita"
"label": "Skilled Trades BC",
"value": "skilledTradesBC"
},
{
"value": "other",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1071,8 +1071,8 @@
"value": "ptib"
},
{
"label": "ITA",
"value": "ita"
"label": "Skilled Trades BC",
"value": "skilledTradesBC"
},
{
"value": "other",
Expand Down Expand Up @@ -1545,8 +1545,7 @@
"addons": [],
"inputType": "text",
"id": "eez2sc9",
"defaultValue": null,
"isNew": false
"defaultValue": null
}
],
"width": 6,
Expand Down