mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-18 03:22:52 +09:00
Fix migration
This commit is contained in:
parent
cdac43b082
commit
5459f2f20d
15
packages/backend/migration/1658981842728FixCalckey.js
Normal file
15
packages/backend/migration/1658981842728FixCalckey.js
Normal file
@ -0,0 +1,15 @@
|
||||
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'`);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user