diff options
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/entities/user.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/entities/user.ts b/src/models/entities/user.ts index ba2062fdb6..91fbe35d94 100644 --- a/src/models/entities/user.ts +++ b/src/models/entities/user.ts @@ -201,6 +201,12 @@ export class User { }) public uri: string | null; + @Column('varchar', { + length: 512, nullable: true, + comment: 'The URI of the user Follower Collection. It will be null if the origin of the user is local.' + }) + public followersUri: string | null; + @Index({ unique: true }) @Column('char', { length: 16, nullable: true, unique: true, |