rudeshark.net/packages/backend/migration/1658203170545calckey.js

28 lines
759 B
JavaScript
Raw Normal View History

2022-07-19 06:04:55 +02:00
export class calckey1658203170545 {
2023-04-07 03:56:46 +02:00
name = "calckey1658203170545";
2022-07-19 06:04:55 +02:00
2023-04-07 03:56:46 +02:00
async up(queryRunner) {
await queryRunner.query(
`UPDATE meta SET "useStarForReactionFallback" = TRUE;`,
);
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-07-19 06:04:55 +02:00
2023-04-07 03:56:46 +02:00
async down(queryRunner) {
await queryRunner.query(
`UPDATE meta SET "useStarForReactionFallback" = FALSE;`,
);
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-07-19 06:04:55 +02:00
}