2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2024-02-14 00:50:11 +09:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
2022-03-01 00:07:03 +09:00
|
|
|
|
|
|
|
export class ffVisibility1636197624383 {
|
2021-11-12 02:02:25 +09:00
|
|
|
constructor() {
|
|
|
|
this.name = 'ffVisibility1636197624383';
|
|
|
|
}
|
|
|
|
async up(queryRunner) {
|
2021-11-07 18:04:32 +09:00
|
|
|
await queryRunner.query(`CREATE TYPE "public"."user_profile_ffvisibility_enum" AS ENUM('public', 'followers', 'private')`);
|
|
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "ffVisibility" "public"."user_profile_ffvisibility_enum" NOT NULL DEFAULT 'public'`);
|
|
|
|
}
|
2021-11-12 02:02:25 +09:00
|
|
|
async down(queryRunner) {
|
2021-11-07 18:04:32 +09:00
|
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "ffVisibility"`);
|
|
|
|
await queryRunner.query(`DROP TYPE "public"."user_profile_ffvisibility_enum"`);
|
|
|
|
}
|
|
|
|
}
|