repo move migration
This commit is contained in:
parent
944eadca8f
commit
206381c220
@ -14,4 +14,4 @@ matrix:
|
||||
- 19.2.0
|
||||
|
||||
branches:
|
||||
include: [ master, develop, feature/* ]
|
||||
include: [ main, develop, feature/* ]
|
||||
|
@ -24,4 +24,4 @@ matrix:
|
||||
- latest
|
||||
|
||||
branches:
|
||||
include: [ master, develop, feature/* ]
|
||||
include: [ main, develop, feature/* ]
|
||||
|
@ -8,4 +8,4 @@ pipeline:
|
||||
no_push: true
|
||||
|
||||
branches:
|
||||
include: [ master, develop ]
|
||||
include: [ main, develop ]
|
||||
|
15
packages/backend/migration/1671388343000-CalckeyRepoMove.js
Normal file
15
packages/backend/migration/1671388343000-CalckeyRepoMove.js
Normal file
@ -0,0 +1,15 @@
|
||||
/* "CalckeyRepoMove1671388343000" is a class that updates the "useStarForReactionFallback" column in
|
||||
the "meta" table to TRUE */
|
||||
export class CalckeyRepoMove1671388343000 {
|
||||
name = 'CalckeyRepoMove1671388343000'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`);
|
||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg/calckey/calckey'`);
|
||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg/calckey/calckey/issues'`);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user