mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
[backend] Remove unfollowed users from existing lists with migration
This commit is contained in:
parent
d1cf1b5611
commit
37ac6addd2
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
// 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> {}
|
||||
}
|
||||
*/
|
Loading…
Reference in a new issue