Compare commits

..

2 Commits

Author SHA1 Message Date
9af519d72f set uuid column datatype to uuid instead of uuidv4
All checks were successful
delpoy / build-and-deploy (push) Successful in 43s
2023-11-13 11:53:17 +01:00
4a4135c31e rename cracked to noauth and remove the possibility to self register as such 2023-11-13 11:52:45 +01:00

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;
}