1
0

merge: upstream

This commit is contained in:
Mar0xy
2023-10-03 15:20:49 +02:00
185 changed files with 4442 additions and 2501 deletions
+6 -6
View File
@@ -24,6 +24,12 @@ export class MiNote {
})
public createdAt: Date;
@Column('timestamp with time zone', {
comment: 'The update time of the Note.',
default: null,
})
public updatedAt: Date | null;
@Index()
@Column({
...id(),
@@ -239,12 +245,6 @@ export class MiNote {
comment: '[Denormalized]',
})
public renoteUserHost: string | null;
@Index()
@Column('timestamp with time zone', {
comment: 'The update time of the Note.',
})
public updatedAt: Date | null;
//#endregion
constructor(data: Partial<MiNote>) {