22 lines
755 B
TypeScript
22 lines
755 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class IceshrimpRepo1689965609061 implements MigrationInterface {
|
|
name = "IceshrimpRepo1689965609061";
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "repositoryUrl" = 'https://iceshrimp.dev/iceshrimp/iceshrimp'`,
|
|
);
|
|
await queryRunner.query(
|
|
`UPDATE meta SET "feedbackUrl" = 'https://iceshrimp.dev/iceshrimp/iceshrimp/issues'`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
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'`,
|
|
);
|
|
}
|
|
}
|