mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
21 lines
592 B
JavaScript
21 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'`,
|
|
);
|
|
}
|
|
}
|