1
0

merge: all upstream changes

This commit is contained in:
Mar0xy
2023-10-13 19:01:17 +02:00
170 changed files with 4490 additions and 2218 deletions
-7
View File
@@ -18,7 +18,6 @@ export class MiNote {
@PrimaryColumn(id())
public id: string;
@Index()
@Column('timestamp with time zone', {
comment: 'The created date of the Note.',
})
@@ -145,11 +144,6 @@ export class MiNote {
})
public url: string | null;
@Column('integer', {
default: 0, select: false,
})
public score: number;
@Index()
@Column({
...id(),
@@ -157,7 +151,6 @@ export class MiNote {
})
public fileIds: MiDriveFile['id'][];
@Index()
@Column('varchar', {
length: 256, array: true, default: '{}',
})