Fixed 267U.pre2

This commit is contained in:
2026-07-26 18:25:37 +09:00
parent 50bfaeafdf
commit 317d00a284
1286 changed files with 80222 additions and 1 deletions
@@ -0,0 +1,15 @@
// This migration is currently inactive.
// It will be activated in the next stable release after the first one that includes this file,
// to make sure users have enough time to migrate their unfollowed list members to follows.
/*
import { MigrationInterface, QueryRunner } from "typeorm"
export class RemoveUnfollowedUsersFromLists1697730891701 implements MigrationInterface {
name = "RemoveUnfollowedUsersFromLists1697730891701";
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`DELETE FROM "user_list_joining" USING "user_list_joining" AS "member" INNER JOIN "user_list" "list" ON "member"."userListId" = "list"."id" WHERE "user_list_joining"."id" = "member"."id" AND "member"."userId" <> "list"."userId" AND "member"."userId" NOT IN (SELECT "followeeId" FROM "following" WHERE "following"."followerId" = "list"."userId")`);
}
public async down(_queryRunner: QueryRunner): Promise<void> {}
}
*/