fix(server): dropGroupマイグレーションが通るように (#9961)
This commit is contained in:
parent
ef7ad05c0b
commit
839a626716
2 changed files with 5 additions and 13 deletions
|
|
@ -202,7 +202,11 @@ export class UserProfile {
|
|||
public mutedInstances: string[];
|
||||
|
||||
@Column('enum', {
|
||||
enum: notificationTypes,
|
||||
enum: [
|
||||
...notificationTypes,
|
||||
// マイグレーションで削除が困難なので古いenumは残しておく
|
||||
'groupInvited',
|
||||
],
|
||||
array: true,
|
||||
default: [],
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue