mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 10:19:06 +01:00
Update instance software metadata
This commit is contained in:
parent
0b14724126
commit
8885a7df30
21
packages/backend/migration/1689965609061-iceshrimp-repo.js
Normal file
21
packages/backend/migration/1689965609061-iceshrimp-repo.js
Normal file
@ -0,0 +1,21 @@
|
||||
export class IceshrimpRepo1689965609061 {
|
||||
name = "IceshrimpRepo1689965609061";
|
||||
|
||||
async up(queryRunner) {
|
||||
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) {
|
||||
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'`,
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user