1
0
Fork 1
mirror of https://example.com synced 2024-11-23 12:56:42 +09:00
firefish/packages/backend/migration/1671388343000-CalckeyRepoMove.js

24 lines
724 B
JavaScript
Raw Normal View History

2023-07-03 07:18:30 +09:00
/* "FirefishRepoMove1671388343000" is a class that updates the "useStarForReactionFallback" column in
2022-12-19 03:41:11 +09:00
the "meta" table to TRUE */
2023-07-03 07:18:30 +09:00
export class FirefishRepoMove1671388343000 {
name = "FirefishRepoMove1671388343000";
2022-12-19 03:41:11 +09:00
async up(queryRunner) {
2023-04-07 10:56:46 +09:00
await queryRunner.query(
2023-07-03 07:18:30 +09:00
`UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`,
2023-04-07 10:56:46 +09:00
);
await queryRunner.query(
2023-07-03 07:18:30 +09:00
`UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`,
2023-04-07 10:56:46 +09:00
);
2022-12-19 03:41:11 +09:00
}
async down(queryRunner) {
2023-04-07 10:56:46 +09:00
await queryRunner.query(
2023-07-03 07:18:30 +09:00
`UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`,
2023-04-07 10:56:46 +09:00
);
await queryRunner.query(
2023-07-03 07:18:30 +09:00
`UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`,
2023-04-07 10:56:46 +09:00
);
2022-12-19 03:41:11 +09:00
}
}