firefish/packages/backend/migration/1658203170545firefish.js

22 lines
576 B
JavaScript
Raw Normal View History

2022-07-19 04:04:55 +00:00
export class calckey1658203170545 {
2023-04-07 01:56:46 +00:00
name = "calckey1658203170545";
2022-07-19 04:04:55 +00:00
2023-04-07 01:56:46 +00:00
async up(queryRunner) {
await queryRunner.query(
2023-07-02 22:18:30 +00:00
`UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`,
2023-04-07 01:56:46 +00:00
);
await queryRunner.query(
2023-07-02 22:18:30 +00:00
`UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`,
2023-04-07 01:56:46 +00:00
);
}
2022-07-19 04:04:55 +00:00
2023-04-07 01:56:46 +00:00
async down(queryRunner) {
await queryRunner.query(
2023-07-02 22:18:30 +00:00
`UPDATE meta SET "repositoryUrl" = 'https://codeberg/firefish/firefish'`,
2023-04-07 01:56:46 +00:00
);
await queryRunner.query(
2023-07-02 22:18:30 +00:00
`UPDATE meta SET "feedbackUrl" = 'https://codeberg/firefish/firefish/issues'`,
2023-04-07 01:56:46 +00:00
);
}
2022-07-19 04:04:55 +00:00
}