Skip to content

Commit

Permalink
Add UTF8 support for person names.
Browse files Browse the repository at this point in the history
fixes #917
  • Loading branch information
bpatrik committed Jun 28, 2024
1 parent 39f1484 commit 1fd07a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/backend/model/database/enitites/PersonEntry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ export class PersonEntry implements PersonDTO {
@PrimaryGeneratedColumn({unsigned: true})
id: number;

@Column(columnCharsetCS)
@Column({
charset: columnCharsetCS.charset,
collation: columnCharsetCS.collation,
})
name: string;

@Column('int', {unsigned: true, default: 0})
Expand Down

0 comments on commit 1fd07a6

Please sign in to comment.