rudeshark.net/packages/backend/migration/1671388343000-CalckeyRepoMove.js

24 lines
724 B
JavaScript
Raw Normal View History

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