fix againnn
This commit is contained in:
parent
4ac6073a77
commit
d37e83046c
@ -1,15 +0,0 @@
|
|||||||
export class FixCalckey1658981842728 {
|
|
||||||
name = 'FixCalckey1658981842728'
|
|
||||||
|
|
||||||
async up(queryRunner) {
|
|
||||||
await queryRunner.query(`UPDATE meta SET "useStarForReactionFallback" = TRUE;`);
|
|
||||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg/thatonecalculator/calckey'`);
|
|
||||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg/thatonecalculator/calckey/issues'`);
|
|
||||||
}
|
|
||||||
|
|
||||||
async down(queryRunner) {
|
|
||||||
await queryRunner.query(`UPDATE meta SET "useStarForReactionFallback" = FALSE;`);
|
|
||||||
await queryRunner.query(`UPDATE meta SET "repositoryUrl" = 'https://codeberg/thatonecalculator/calckey'`);
|
|
||||||
await queryRunner.query(`UPDATE meta SET "feedbackUrl" = 'https://codeberg/thatonecalculator/calckey/issues'`);
|
|
||||||
}
|
|
||||||
}
|
|
15
packages/backend/migration/1658982614728FixCalckey.js
Normal file
15
packages/backend/migration/1658982614728FixCalckey.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
export class FixCalckey1658982614728 {
|
||||||
|
name = "FixCalckey1658982614728"
|
||||||
|
|
||||||
|
async up(queryRunner) {
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "useStarForReactionFallback" = TRUE;`);
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "repositoryUrl" = "https://codeberg/thatonecalculator/calckey"`);
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "feedbackUrl" = "https://codeberg/thatonecalculator/calckey/issues"`);
|
||||||
|
}
|
||||||
|
|
||||||
|
async down(queryRunner) {
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "useStarForReactionFallback" = FALSE;`);
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "repositoryUrl" = "https://codeberg/thatonecalculator/calckey"`);
|
||||||
|
await queryRunner.query(`ALTER TABLE "meta" SET "feedbackUrl" = "https://codeberg/thatonecalculator/calckey/issues"`);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user