mirror of
https://example.com
synced 2024-11-23 04:36:39 +09:00
22 lines
592 B
JavaScript
22 lines
592 B
JavaScript
|
export class FixRepo1679269929000 {
|
||
|
name = "FixRepo1679269929000";
|
||
|
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/firefish/firefish'`,
|
||
|
);
|
||
|
await queryRunner.query(
|
||
|
`UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/firefish/firefish/issues'`,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/firefish/firefish'`,
|
||
|
);
|
||
|
await queryRunner.query(
|
||
|
`UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/firefish/firefish/issues'`,
|
||
|
);
|
||
|
}
|
||
|
}
|