Skip to content

Commit

Permalink
fix: syuilo/misskey時代から使用してるサーバーが改変したバージョンだと誤判定される問題 (DB migrationで修正) (
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 authored Feb 18, 2024
1 parent 0b636d1 commit 1b1046b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
-
-->
## 202x.x.x (unreleased)

### General
- Fix: syuilo/misskeyの時代からあるインスタンスが改変されたバージョンであると誤認識される問題

### Client

### Server


## 202x.x.x (unreleased)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/

export class RepositoryUrlFromSyuiloToMisskeyDev1708266695091 {
name = 'RepositoryUrlFromSyuiloToMisskeyDev1708266695091'

async up(queryRunner) {
await queryRunner.query(`UPDATE "meta" SET "repositoryUrl" = 'https://github.com/misskey-dev/misskey' WHERE "repositoryUrl" = 'https://github.com/syuilo/misskey'`);
}

async down(queryRunner) {
// no valid down migration
}
}

0 comments on commit 1b1046b

Please sign in to comment.