mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 04:53:09 +02:00
17 lines
512 B
JavaScript
17 lines
512 B
JavaScript
|
/*
|
||
|
* 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
|
||
|
}
|
||
|
}
|