diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-12 00:42:39 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-12 00:42:39 +0900 |
| commit | 11c30eccb339ea4c29eacb3178a62744e7184519 (patch) | |
| tree | b66a1635bcce7f498a3b31c3e4b09edf3ed8a393 /src/models/entities/note.ts | |
| parent | Fix error log (diff) | |
| download | misskey-11c30eccb339ea4c29eacb3178a62744e7184519.tar.gz misskey-11c30eccb339ea4c29eacb3178a62744e7184519.tar.bz2 misskey-11c30eccb339ea4c29eacb3178a62744e7184519.zip | |
非正規化カラムを削除
非正規化するほどの情報じゃない
Diffstat (limited to 'src/models/entities/note.ts')
| -rw-r--r-- | src/models/entities/note.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/models/entities/note.ts b/src/models/entities/note.ts index 5e83978197..253d157b8c 100644 --- a/src/models/entities/note.ts +++ b/src/models/entities/note.ts @@ -195,12 +195,6 @@ export class Note { }) public userHost: string | null; - @Column('varchar', { - length: 128, nullable: true, - comment: '[Denormalized]' - }) - public userInbox: string | null; - @Column({ ...id(), nullable: true, |