feat: Add language metadata to notes

This commit is contained in:
Essem 2024-02-03 11:45:45 -06:00
parent 2fa0e238b7
commit a76d3cf861
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
20 changed files with 630 additions and 923 deletions

View file

@ -61,6 +61,12 @@ export class MiNote {
})
public text: string | null;
@Column('varchar', {
length: 10,
nullable: true,
})
public lang: string | null;
@Column('varchar', {
length: 256, nullable: true,
})