mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-08 11:44:09 +01:00
0c9af9a6a5
This reverts commit 337b42bcb1
.
16 lines
526 B
JavaScript
16 lines
526 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class HttpSignImplLv1709242519122 {
|
|
name = 'HttpSignImplLv1709242519122'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "instance" ADD "httpMessageSignaturesImplementationLevel" character varying(16) NOT NULL DEFAULT '00'`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "httpMessageSignaturesImplementationLevel"`);
|
|
}
|
|
}
|