1
0
Fork 1
mirror of https://example.com synced 2024-11-26 15:46:39 +09:00
firefish/packages/backend/migration/1658203170545firefish.js

22 lines
576 B
JavaScript
Raw Normal View History

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