diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 16:57:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 16:57:12 +0900 |
| commit | f04002188de44baf67a5ff03eb4d2e9fe6115504 (patch) | |
| tree | 02e887d17e534866a1ded54194dc446b57e6f96b /src/models | |
| parent | Fix test (#5801) (diff) | |
| download | sharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.tar.gz sharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.tar.bz2 sharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.zip | |
Resolve #5513
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/entities/note.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/entities/note.ts b/src/models/entities/note.ts index c359474811..e6fbd4ce75 100644 --- a/src/models/entities/note.ts +++ b/src/models/entities/note.ts @@ -4,6 +4,7 @@ import { DriveFile } from './drive-file'; import { id } from '../id'; @Entity() +@Index('IDX_NOTE_TAGS', { synchronize: false }) export class Note { @PrimaryColumn(id()) public id: string; |