summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-08-15 20:26:44 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-08-15 20:26:44 +0900
commitcced83024bfb578ee802ab13fc8af72a1be9a1e1 (patch)
tree359d6a3eff6250600e714e5ec2a5ae2516cd8353 /src/models
parentchore: Remove vips from Dockerfile (#7633) (diff)
downloadsharkey-cced83024bfb578ee802ab13fc8af72a1be9a1e1.tar.gz
sharkey-cced83024bfb578ee802ab13fc8af72a1be9a1e1.tar.bz2
sharkey-cced83024bfb578ee802ab13fc8af72a1be9a1e1.zip
feat: ノートの翻訳機能
Resolve #5213
Diffstat (limited to 'src/models')
-rw-r--r--src/models/entities/meta.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/entities/meta.ts b/src/models/entities/meta.ts
index d0b6ee7f2b..2a0632c87c 100644
--- a/src/models/entities/meta.ts
+++ b/src/models/entities/meta.ts
@@ -314,6 +314,12 @@ export class Meta {
public discordClientSecret: string | null;
@Column('varchar', {
+ length: 128,
+ nullable: true
+ })
+ public deeplAuthKey: string | null;
+
+ @Column('varchar', {
length: 512,
nullable: true
})