a46d79d5da
Co-authored-by: naskya <m@naskya.net> Co-authored-by: TrojanerHD <github@trojaner.dev>
21 lines
624 B
JavaScript
21 lines
624 B
JavaScript
export class FirefishUrlMove1707850084123 {
|
|
name = "FirefishUrlMove1707850084123";
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "repositoryUrl" = 'https://firefish.dev/firefish/firefish'`,
|
|
);
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "feedbackUrl" = 'https://firefish.dev/firefish/firefish/issues'`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "repositoryUrl" = 'https://git.joinfirefish.org/firefish/firefish'`,
|
|
);
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "feedbackUrl" = 'https://git.joinfirefish.org/firefish/firefish/issues'`,
|
|
);
|
|
}
|
|
}
|