diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-15 20:26:44 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-15 20:26:44 +0900 |
| commit | cced83024bfb578ee802ab13fc8af72a1be9a1e1 (patch) | |
| tree | 359d6a3eff6250600e714e5ec2a5ae2516cd8353 /src/models | |
| parent | chore: Remove vips from Dockerfile (#7633) (diff) | |
| download | sharkey-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.ts | 6 |
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 }) |