mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
fix: repo url
This commit is contained in:
parent
a0bcf42b88
commit
efef445eef
1 changed files with 13 additions and 0 deletions
13
packages/backend/migration/1679269929000-fix-repo.js
Normal file
13
packages/backend/migration/1679269929000-fix-repo.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
export class FixRepo1679269929000 {
|
||||
name = 'FixRepo1679269929000'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/calckey/calckey'`);
|
||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/calckey/calckey/issues'`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg.org/calckey/calckey'`);
|
||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg.org/calckey/calckey/issues'`);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue