jormungandr-bite/packages/backend/migration/1658203170545firefish.js

22 lines
576 B
JavaScript
Raw Normal View History

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