set uuid column datatype to uuid instead of uuidv4
All checks were successful
delpoy / build-and-deploy (push) Successful in 43s

This commit is contained in:
bytedream 2023-11-13 11:53:17 +01:00
parent 4a4135c31e
commit 9af519d72f

View File

@ -31,7 +31,7 @@ export class User extends Model {
declare playertype: 'java' | 'bedrock' | 'noauth';
@Column({ type: DataTypes.STRING })
declare password: string;
@Column({ type: DataTypes.UUIDV4 })
@Column({ type: DataTypes.UUID })
@Index
declare uuid: string;
}