summaryrefslogtreecommitdiff
path: root/src/models/entities/user.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-19 00:24:07 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-19 00:24:07 +0900
commit3f71b1463719bee476d39b7ceca5a2eea4b5cb67 (patch)
tree70003fc0a220785526289fd5b46d8c708a59c21d /src/models/entities/user.ts
parentfix(client): プラグインの動作を修正 (diff)
downloadmisskey-3f71b1463719bee476d39b7ceca5a2eea4b5cb67.tar.gz
misskey-3f71b1463719bee476d39b7ceca5a2eea4b5cb67.tar.bz2
misskey-3f71b1463719bee476d39b7ceca5a2eea4b5cb67.zip
feat: Blurhash integration
Resolve #6559
Diffstat (limited to 'src/models/entities/user.ts')
-rw-r--r--src/models/entities/user.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/models/entities/user.ts b/src/models/entities/user.ts
index d3086f43f2..fee5906a3d 100644
--- a/src/models/entities/user.ts
+++ b/src/models/entities/user.ts
@@ -106,14 +106,14 @@ export class User {
public bannerUrl: string | null;
@Column('varchar', {
- length: 32, nullable: true,
+ length: 128, nullable: true,
})
- public avatarColor: string | null;
+ public avatarBlurhash: string | null;
@Column('varchar', {
- length: 32, nullable: true,
+ length: 128, nullable: true,
})
- public bannerColor: string | null;
+ public bannerBlurhash: string | null;
@Column('boolean', {
default: false,