fix(user): make username unique

This commit is contained in:
avicenan
2026-06-01 09:34:05 +09:00
parent 5006869ffa
commit 60e6474ba2

View File

@ -30,7 +30,7 @@ export class User {
@Column({ @Column({
nullable: true, nullable: true,
unique: false, unique: true,
length: 64, length: 64,
}) })
username: string; username: string;