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

22 lines
576 B
JavaScript
Raw Normal View History

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