This commit is contained in:
tamaina 2023-02-23 11:10:16 +00:00
parent 4aa6748387
commit 6cdb3600e2
2 changed files with 3 additions and 9 deletions

View file

@ -65,8 +65,8 @@ export class Notification {
* app - * app -
*/ */
@Index() @Index()
@Column('enum', { @Column('varchar', {
enum: notificationTypes, length: 64,
comment: 'The type of the Notification.', comment: 'The type of the Notification.',
}) })
public type: typeof notificationTypes[number]; public type: typeof notificationTypes[number];

View file

@ -201,13 +201,7 @@ export class UserProfile {
}) })
public mutedInstances: string[]; public mutedInstances: string[];
@Column('enum', { @Column('jsonb', {
enum: [
...notificationTypes,
// マイグレーションで削除が困難なので古いenumは残しておく
...obsoleteNotificationTypes,
],
array: true,
default: [], default: [],
}) })
public mutingNotificationTypes: typeof notificationTypes[number][]; public mutingNotificationTypes: typeof notificationTypes[number][];