Compare commits

..

1 Commits

Author SHA1 Message Date
9e812fdef2 feat: rename cracked to noauth and remove the possibility to self register as such
All checks were successful
delpoy / build-and-deploy (push) Successful in 38s
2023-11-13 11:42:24 +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.UUID })
@Column({ type: DataTypes.UUIDV4 })
@Index
declare uuid: string;
}