backend: increase requestId max size for GNU Social

GNU Social's follow request IDs are larger than the 128 character limit
of the follow_request.requestId column. This prevents follow requests
from GNU Social instances from being handled by Foundkey instances.

The solution is to make the requestId column larger.

Fixes FoundKeyGang/FoundKey#146
This commit is contained in:
Norm 2022-09-11 21:04:20 -04:00
parent 406be6b213
commit 1120b6959d
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,12 @@
export class largerFollowRequestIds1662943835603 {
name = 'largerFollowRequestIds1662943835603';
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "follow_request" ALTER COLUMN "requestId" TYPE VARCHAR(2048)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "follow_request" ALTER COLUMN "requestId" TYPE VARCHAR(128)`);
}
}

View file

@ -40,7 +40,7 @@ export class FollowRequest {
public follower: User | null;
@Column('varchar', {
length: 128, nullable: true,
length: 2048, nullable: true,
comment: 'id of Follow Activity.',
})
public requestId: string | null;